Remove unused npm scripts for quill

This commit is contained in:
Zihua Li 2023-11-28 12:15:48 +08:00
parent db0fbd1020
commit 62eb8ce379
8 changed files with 4 additions and 21 deletions

View File

@ -1,2 +1 @@
dist/
_develop

View File

@ -1,9 +1,6 @@
*.ts
!*.d.ts
.*
Gemfile
Gemfile.lock
_develop
.github
.vscode
docs

2
package-lock.json generated
View File

@ -25507,9 +25507,7 @@
"highlight.js": "^9.18.1",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.3",
"http-proxy": "^1.18.0",
"jsdom": "^22.1.0",
"lodash": "^4.17.15",
"lodash-es": "^4.17.21",
"mini-css-extract-plugin": "^2.7.6",
"prettier": "^3.0.3",

View File

@ -9,7 +9,7 @@
"settings": {
"import/resolver": {
"webpack": {
"config": "webpack.config.js"
"config": "webpack.config.ts"
}
}
},

View File

@ -1 +1 @@
dist
dist

View File

@ -34,9 +34,7 @@
"highlight.js": "^9.18.1",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.3",
"http-proxy": "^1.18.0",
"jsdom": "^22.1.0",
"lodash": "^4.17.15",
"lodash-es": "^4.17.21",
"mini-css-extract-plugin": "^2.7.6",
"prettier": "^3.0.3",
@ -71,9 +69,7 @@
"scripts": {
"build:dev": "./scripts/build development",
"build:prod": "./scripts/build production",
"build:webpack": "webpack",
"build:release": "./_develop/scripts/release.sh",
"lint": "npm run lint:eslint && npm run lint:tsc",
"lint": "run-s lint:*",
"lint:eslint": "eslint .",
"lint:tsc": "tsc --noEmit --skipLibCheck",
"start": "[[ -z \"$npm_package_config_ports_webpack\" ]] && webpack-dev-server || webpack-dev-server --port $npm_package_config_ports_webpack",

View File

@ -6,13 +6,6 @@
"es6": true
},
"parser": "@typescript-eslint/parser",
"settings": {
"import/resolver": {
"webpack": {
"config": "webpack.config.js"
}
}
},
"ignorePatterns": ["*.js", "*.d.ts"],
"overrides": [
{

View File

@ -15,7 +15,7 @@ mkdir .release
mkdir .release/quill
npm run build
npx webpack --config _develop/webpack.config.js --env minimize
npx webpack --env minimize
cp dist/quill.core.css dist/quill.bubble.css dist/quill.snow.css dist/quill.js dist/quill.core.js dist/quill.min.js dist/quill.min.js.map .release/quill/
cd .release