From 94735b023f26f4d717e958e62ee48f7b18000bd2 Mon Sep 17 00:00:00 2001 From: Alex Dima Date: Fri, 5 Nov 2021 12:13:58 +0100 Subject: [PATCH] Move into `monaco-editor-webpack-plugin` folder --- {.github => monaco-editor-webpack-plugin/.github}/commands.yml | 0 {.github => monaco-editor-webpack-plugin/.github}/locker.yml | 0 .../.github}/needs_more_info.yml | 0 .gitignore => monaco-editor-webpack-plugin/.gitignore | 0 .npmignore => monaco-editor-webpack-plugin/.npmignore | 0 {.vscode => monaco-editor-webpack-plugin/.vscode}/launch.json | 0 {.vscode => monaco-editor-webpack-plugin/.vscode}/settings.json | 0 LICENSE => monaco-editor-webpack-plugin/LICENSE | 0 README.md => monaco-editor-webpack-plugin/README.md | 0 SECURITY.md => monaco-editor-webpack-plugin/SECURITY.md | 0 .../package-lock.json | 0 package.json => monaco-editor-webpack-plugin/package.json | 0 .../scripts}/import-editor.js | 0 {src => monaco-editor-webpack-plugin/src}/features.ts | 0 {src => monaco-editor-webpack-plugin/src}/index.ts | 0 {src => monaco-editor-webpack-plugin/src}/languages.ts | 0 {src => monaco-editor-webpack-plugin/src}/loader-utils.d.ts | 0 {src => monaco-editor-webpack-plugin/src}/loaders/include.ts | 0 .../src}/plugins/AddWorkerEntryPointPlugin.ts | 0 {src => monaco-editor-webpack-plugin/src}/types.ts | 0 {test => monaco-editor-webpack-plugin/test}/dist/index.html | 0 {test => monaco-editor-webpack-plugin/test}/index.js | 0 .../test}/webpack-cross-origin.config.js | 0 {test => monaco-editor-webpack-plugin/test}/webpack.config.js | 0 tsconfig.json => monaco-editor-webpack-plugin/tsconfig.json | 0 25 files changed, 0 insertions(+), 0 deletions(-) rename {.github => monaco-editor-webpack-plugin/.github}/commands.yml (100%) rename {.github => monaco-editor-webpack-plugin/.github}/locker.yml (100%) rename {.github => monaco-editor-webpack-plugin/.github}/needs_more_info.yml (100%) rename .gitignore => monaco-editor-webpack-plugin/.gitignore (100%) rename .npmignore => monaco-editor-webpack-plugin/.npmignore (100%) rename {.vscode => monaco-editor-webpack-plugin/.vscode}/launch.json (100%) rename {.vscode => monaco-editor-webpack-plugin/.vscode}/settings.json (100%) rename LICENSE => monaco-editor-webpack-plugin/LICENSE (100%) rename README.md => monaco-editor-webpack-plugin/README.md (100%) rename SECURITY.md => monaco-editor-webpack-plugin/SECURITY.md (100%) rename package-lock.json => monaco-editor-webpack-plugin/package-lock.json (100%) rename package.json => monaco-editor-webpack-plugin/package.json (100%) rename {scripts => monaco-editor-webpack-plugin/scripts}/import-editor.js (100%) rename {src => monaco-editor-webpack-plugin/src}/features.ts (100%) rename {src => monaco-editor-webpack-plugin/src}/index.ts (100%) rename {src => monaco-editor-webpack-plugin/src}/languages.ts (100%) rename {src => monaco-editor-webpack-plugin/src}/loader-utils.d.ts (100%) rename {src => monaco-editor-webpack-plugin/src}/loaders/include.ts (100%) rename {src => monaco-editor-webpack-plugin/src}/plugins/AddWorkerEntryPointPlugin.ts (100%) rename {src => monaco-editor-webpack-plugin/src}/types.ts (100%) rename {test => monaco-editor-webpack-plugin/test}/dist/index.html (100%) rename {test => monaco-editor-webpack-plugin/test}/index.js (100%) rename {test => monaco-editor-webpack-plugin/test}/webpack-cross-origin.config.js (100%) rename {test => monaco-editor-webpack-plugin/test}/webpack.config.js (100%) rename tsconfig.json => monaco-editor-webpack-plugin/tsconfig.json (100%) diff --git a/.github/commands.yml b/monaco-editor-webpack-plugin/.github/commands.yml similarity index 100% rename from .github/commands.yml rename to monaco-editor-webpack-plugin/.github/commands.yml diff --git a/.github/locker.yml b/monaco-editor-webpack-plugin/.github/locker.yml similarity index 100% rename from .github/locker.yml rename to monaco-editor-webpack-plugin/.github/locker.yml diff --git a/.github/needs_more_info.yml b/monaco-editor-webpack-plugin/.github/needs_more_info.yml similarity index 100% rename from .github/needs_more_info.yml rename to monaco-editor-webpack-plugin/.github/needs_more_info.yml diff --git a/.gitignore b/monaco-editor-webpack-plugin/.gitignore similarity index 100% rename from .gitignore rename to monaco-editor-webpack-plugin/.gitignore diff --git a/.npmignore b/monaco-editor-webpack-plugin/.npmignore similarity index 100% rename from .npmignore rename to monaco-editor-webpack-plugin/.npmignore diff --git a/.vscode/launch.json b/monaco-editor-webpack-plugin/.vscode/launch.json similarity index 100% rename from .vscode/launch.json rename to monaco-editor-webpack-plugin/.vscode/launch.json diff --git a/.vscode/settings.json b/monaco-editor-webpack-plugin/.vscode/settings.json similarity index 100% rename from .vscode/settings.json rename to monaco-editor-webpack-plugin/.vscode/settings.json diff --git a/LICENSE b/monaco-editor-webpack-plugin/LICENSE similarity index 100% rename from LICENSE rename to monaco-editor-webpack-plugin/LICENSE diff --git a/README.md b/monaco-editor-webpack-plugin/README.md similarity index 100% rename from README.md rename to monaco-editor-webpack-plugin/README.md diff --git a/SECURITY.md b/monaco-editor-webpack-plugin/SECURITY.md similarity index 100% rename from SECURITY.md rename to monaco-editor-webpack-plugin/SECURITY.md diff --git a/package-lock.json b/monaco-editor-webpack-plugin/package-lock.json similarity index 100% rename from package-lock.json rename to monaco-editor-webpack-plugin/package-lock.json diff --git a/package.json b/monaco-editor-webpack-plugin/package.json similarity index 100% rename from package.json rename to monaco-editor-webpack-plugin/package.json diff --git a/scripts/import-editor.js b/monaco-editor-webpack-plugin/scripts/import-editor.js similarity index 100% rename from scripts/import-editor.js rename to monaco-editor-webpack-plugin/scripts/import-editor.js diff --git a/src/features.ts b/monaco-editor-webpack-plugin/src/features.ts similarity index 100% rename from src/features.ts rename to monaco-editor-webpack-plugin/src/features.ts diff --git a/src/index.ts b/monaco-editor-webpack-plugin/src/index.ts similarity index 100% rename from src/index.ts rename to monaco-editor-webpack-plugin/src/index.ts diff --git a/src/languages.ts b/monaco-editor-webpack-plugin/src/languages.ts similarity index 100% rename from src/languages.ts rename to monaco-editor-webpack-plugin/src/languages.ts diff --git a/src/loader-utils.d.ts b/monaco-editor-webpack-plugin/src/loader-utils.d.ts similarity index 100% rename from src/loader-utils.d.ts rename to monaco-editor-webpack-plugin/src/loader-utils.d.ts diff --git a/src/loaders/include.ts b/monaco-editor-webpack-plugin/src/loaders/include.ts similarity index 100% rename from src/loaders/include.ts rename to monaco-editor-webpack-plugin/src/loaders/include.ts diff --git a/src/plugins/AddWorkerEntryPointPlugin.ts b/monaco-editor-webpack-plugin/src/plugins/AddWorkerEntryPointPlugin.ts similarity index 100% rename from src/plugins/AddWorkerEntryPointPlugin.ts rename to monaco-editor-webpack-plugin/src/plugins/AddWorkerEntryPointPlugin.ts diff --git a/src/types.ts b/monaco-editor-webpack-plugin/src/types.ts similarity index 100% rename from src/types.ts rename to monaco-editor-webpack-plugin/src/types.ts diff --git a/test/dist/index.html b/monaco-editor-webpack-plugin/test/dist/index.html similarity index 100% rename from test/dist/index.html rename to monaco-editor-webpack-plugin/test/dist/index.html diff --git a/test/index.js b/monaco-editor-webpack-plugin/test/index.js similarity index 100% rename from test/index.js rename to monaco-editor-webpack-plugin/test/index.js diff --git a/test/webpack-cross-origin.config.js b/monaco-editor-webpack-plugin/test/webpack-cross-origin.config.js similarity index 100% rename from test/webpack-cross-origin.config.js rename to monaco-editor-webpack-plugin/test/webpack-cross-origin.config.js diff --git a/test/webpack.config.js b/monaco-editor-webpack-plugin/test/webpack.config.js similarity index 100% rename from test/webpack.config.js rename to monaco-editor-webpack-plugin/test/webpack.config.js diff --git a/tsconfig.json b/monaco-editor-webpack-plugin/tsconfig.json similarity index 100% rename from tsconfig.json rename to monaco-editor-webpack-plugin/tsconfig.json