diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e4159411..4cbab6f6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,7 +27,7 @@ jobs: - name: Install node modules (2) if: ${{ steps.cacheNodeModules.outputs.cache-hit != 'true' }} - run: npm install --prefix monaco-editor-webpack-plugin + run: npm install --prefix webpack-plugin - name: Check prettier run: npm run prettier-check diff --git a/.gitignore b/.gitignore index e587efda..59d33ffa 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,5 @@ **/node_modules/ **/out/ **/release/ -/monaco-editor-webpack-plugin/test/dist/*.js -/monaco-editor-webpack-plugin/test/dist/*.ttf +/webpack-plugin/test/dist/*.js +/webpack-plugin/test/dist/*.ttf diff --git a/.prettierignore b/.prettierignore index d0400950..51b88097 100644 --- a/.prettierignore +++ b/.prettierignore @@ -12,7 +12,7 @@ /monaco-editor/typedoc/theme/ /monaco-editor/typedoc/monaco.d.ts /monaco-editor/website/lib/ -/monaco-editor-webpack-plugin/test/dist/*.js -/monaco-editor-webpack-plugin/out/ +/webpack-plugin/test/dist/*.js +/webpack-plugin/out/ /release/ /src/typescript/lib/ diff --git a/monaco-editor-webpack-plugin/.github/commands.yml b/webpack-plugin/.github/commands.yml similarity index 100% rename from monaco-editor-webpack-plugin/.github/commands.yml rename to webpack-plugin/.github/commands.yml diff --git a/monaco-editor-webpack-plugin/.github/locker.yml b/webpack-plugin/.github/locker.yml similarity index 100% rename from monaco-editor-webpack-plugin/.github/locker.yml rename to webpack-plugin/.github/locker.yml diff --git a/monaco-editor-webpack-plugin/.github/needs_more_info.yml b/webpack-plugin/.github/needs_more_info.yml similarity index 100% rename from monaco-editor-webpack-plugin/.github/needs_more_info.yml rename to webpack-plugin/.github/needs_more_info.yml diff --git a/monaco-editor-webpack-plugin/.npmignore b/webpack-plugin/.npmignore similarity index 100% rename from monaco-editor-webpack-plugin/.npmignore rename to webpack-plugin/.npmignore diff --git a/monaco-editor-webpack-plugin/.vscode/launch.json b/webpack-plugin/.vscode/launch.json similarity index 100% rename from monaco-editor-webpack-plugin/.vscode/launch.json rename to webpack-plugin/.vscode/launch.json diff --git a/monaco-editor-webpack-plugin/LICENSE b/webpack-plugin/LICENSE similarity index 100% rename from monaco-editor-webpack-plugin/LICENSE rename to webpack-plugin/LICENSE diff --git a/monaco-editor-webpack-plugin/README.md b/webpack-plugin/README.md similarity index 100% rename from monaco-editor-webpack-plugin/README.md rename to webpack-plugin/README.md diff --git a/monaco-editor-webpack-plugin/package-lock.json b/webpack-plugin/package-lock.json similarity index 100% rename from monaco-editor-webpack-plugin/package-lock.json rename to webpack-plugin/package-lock.json diff --git a/monaco-editor-webpack-plugin/package.json b/webpack-plugin/package.json similarity index 100% rename from monaco-editor-webpack-plugin/package.json rename to webpack-plugin/package.json diff --git a/monaco-editor-webpack-plugin/scripts/import-editor.js b/webpack-plugin/scripts/import-editor.js similarity index 100% rename from monaco-editor-webpack-plugin/scripts/import-editor.js rename to webpack-plugin/scripts/import-editor.js diff --git a/monaco-editor-webpack-plugin/src/features.ts b/webpack-plugin/src/features.ts similarity index 100% rename from monaco-editor-webpack-plugin/src/features.ts rename to webpack-plugin/src/features.ts diff --git a/monaco-editor-webpack-plugin/src/index.ts b/webpack-plugin/src/index.ts similarity index 100% rename from monaco-editor-webpack-plugin/src/index.ts rename to webpack-plugin/src/index.ts diff --git a/monaco-editor-webpack-plugin/src/languages.ts b/webpack-plugin/src/languages.ts similarity index 100% rename from monaco-editor-webpack-plugin/src/languages.ts rename to webpack-plugin/src/languages.ts diff --git a/monaco-editor-webpack-plugin/src/loader-utils.d.ts b/webpack-plugin/src/loader-utils.d.ts similarity index 100% rename from monaco-editor-webpack-plugin/src/loader-utils.d.ts rename to webpack-plugin/src/loader-utils.d.ts diff --git a/monaco-editor-webpack-plugin/src/loaders/include.ts b/webpack-plugin/src/loaders/include.ts similarity index 100% rename from monaco-editor-webpack-plugin/src/loaders/include.ts rename to webpack-plugin/src/loaders/include.ts diff --git a/monaco-editor-webpack-plugin/src/plugins/AddWorkerEntryPointPlugin.ts b/webpack-plugin/src/plugins/AddWorkerEntryPointPlugin.ts similarity index 100% rename from monaco-editor-webpack-plugin/src/plugins/AddWorkerEntryPointPlugin.ts rename to webpack-plugin/src/plugins/AddWorkerEntryPointPlugin.ts diff --git a/monaco-editor-webpack-plugin/src/types.ts b/webpack-plugin/src/types.ts similarity index 100% rename from monaco-editor-webpack-plugin/src/types.ts rename to webpack-plugin/src/types.ts diff --git a/monaco-editor-webpack-plugin/test/dist/index.html b/webpack-plugin/test/dist/index.html similarity index 100% rename from monaco-editor-webpack-plugin/test/dist/index.html rename to webpack-plugin/test/dist/index.html diff --git a/monaco-editor-webpack-plugin/test/index.js b/webpack-plugin/test/index.js similarity index 100% rename from monaco-editor-webpack-plugin/test/index.js rename to webpack-plugin/test/index.js diff --git a/monaco-editor-webpack-plugin/test/webpack-cross-origin.config.js b/webpack-plugin/test/webpack-cross-origin.config.js similarity index 100% rename from monaco-editor-webpack-plugin/test/webpack-cross-origin.config.js rename to webpack-plugin/test/webpack-cross-origin.config.js diff --git a/monaco-editor-webpack-plugin/test/webpack.config.js b/webpack-plugin/test/webpack.config.js similarity index 100% rename from monaco-editor-webpack-plugin/test/webpack.config.js rename to webpack-plugin/test/webpack.config.js diff --git a/monaco-editor-webpack-plugin/tsconfig.json b/webpack-plugin/tsconfig.json similarity index 100% rename from monaco-editor-webpack-plugin/tsconfig.json rename to webpack-plugin/tsconfig.json