From a21839d00d3b3a1af5adc890f689868acf770ecf Mon Sep 17 00:00:00 2001 From: Alex Dima Date: Mon, 15 Nov 2021 16:16:53 +0100 Subject: [PATCH] Rename to `webpack-plugin` --- .github/workflows/ci.yml | 2 +- .gitignore | 4 ++-- .prettierignore | 4 ++-- .../.github/commands.yml | 0 .../.github/locker.yml | 0 .../.github/needs_more_info.yml | 0 {monaco-editor-webpack-plugin => webpack-plugin}/.npmignore | 0 .../.vscode/launch.json | 0 {monaco-editor-webpack-plugin => webpack-plugin}/LICENSE | 0 {monaco-editor-webpack-plugin => webpack-plugin}/README.md | 0 .../package-lock.json | 0 {monaco-editor-webpack-plugin => webpack-plugin}/package.json | 0 .../scripts/import-editor.js | 0 .../src/features.ts | 0 {monaco-editor-webpack-plugin => webpack-plugin}/src/index.ts | 0 .../src/languages.ts | 0 .../src/loader-utils.d.ts | 0 .../src/loaders/include.ts | 0 .../src/plugins/AddWorkerEntryPointPlugin.ts | 0 {monaco-editor-webpack-plugin => webpack-plugin}/src/types.ts | 0 .../test/dist/index.html | 0 .../test/index.js | 0 .../test/webpack-cross-origin.config.js | 0 .../test/webpack.config.js | 0 .../tsconfig.json | 0 25 files changed, 5 insertions(+), 5 deletions(-) rename {monaco-editor-webpack-plugin => webpack-plugin}/.github/commands.yml (100%) rename {monaco-editor-webpack-plugin => webpack-plugin}/.github/locker.yml (100%) rename {monaco-editor-webpack-plugin => webpack-plugin}/.github/needs_more_info.yml (100%) rename {monaco-editor-webpack-plugin => webpack-plugin}/.npmignore (100%) rename {monaco-editor-webpack-plugin => webpack-plugin}/.vscode/launch.json (100%) rename {monaco-editor-webpack-plugin => webpack-plugin}/LICENSE (100%) rename {monaco-editor-webpack-plugin => webpack-plugin}/README.md (100%) rename {monaco-editor-webpack-plugin => webpack-plugin}/package-lock.json (100%) rename {monaco-editor-webpack-plugin => webpack-plugin}/package.json (100%) rename {monaco-editor-webpack-plugin => webpack-plugin}/scripts/import-editor.js (100%) rename {monaco-editor-webpack-plugin => webpack-plugin}/src/features.ts (100%) rename {monaco-editor-webpack-plugin => webpack-plugin}/src/index.ts (100%) rename {monaco-editor-webpack-plugin => webpack-plugin}/src/languages.ts (100%) rename {monaco-editor-webpack-plugin => webpack-plugin}/src/loader-utils.d.ts (100%) rename {monaco-editor-webpack-plugin => webpack-plugin}/src/loaders/include.ts (100%) rename {monaco-editor-webpack-plugin => webpack-plugin}/src/plugins/AddWorkerEntryPointPlugin.ts (100%) rename {monaco-editor-webpack-plugin => webpack-plugin}/src/types.ts (100%) rename {monaco-editor-webpack-plugin => webpack-plugin}/test/dist/index.html (100%) rename {monaco-editor-webpack-plugin => webpack-plugin}/test/index.js (100%) rename {monaco-editor-webpack-plugin => webpack-plugin}/test/webpack-cross-origin.config.js (100%) rename {monaco-editor-webpack-plugin => webpack-plugin}/test/webpack.config.js (100%) rename {monaco-editor-webpack-plugin => webpack-plugin}/tsconfig.json (100%) 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