Add some dev dependencies for win

This commit is contained in:
TylorShine 2023-05-07 22:12:30 +09:00
parent 80b9acc712
commit 2c881479ed
4 changed files with 1845 additions and 14013 deletions

File diff suppressed because it is too large Load Diff

View File

@ -4,7 +4,7 @@
"description": "", "description": "",
"main": ".eslintrc.js", "main": ".eslintrc.js",
"scripts": { "scripts": {
"clean": "rimraf dist/*", "clean": "rimraf dist/",
"webpack:prod": "npx webpack --config webpack.prod.js", "webpack:prod": "npx webpack --config webpack.prod.js",
"webpack:dev": "npx webpack --config webpack.dev.js", "webpack:dev": "npx webpack --config webpack.dev.js",
"build:prod": "npm-run-all clean webpack:prod", "build:prod": "npm-run-all clean webpack:prod",
@ -19,6 +19,7 @@
"author": "wataru.okada@flect.co.jp", "author": "wataru.okada@flect.co.jp",
"license": "ISC", "license": "ISC",
"devDependencies": { "devDependencies": {
"@babel/core": "^7.21.8",
"@babel/plugin-transform-runtime": "^7.21.4", "@babel/plugin-transform-runtime": "^7.21.4",
"@babel/preset-env": "^7.21.5", "@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6", "@babel/preset-react": "^7.18.6",

File diff suppressed because it is too large Load Diff

View File

@ -7,12 +7,12 @@
"lib": "lib" "lib": "lib"
}, },
"scripts": { "scripts": {
"clean:worklet": "rimraf worklet/dist/*", "clean:worklet": "rimraf worklet/dist/",
"webpack:worklet:dev": "webpack --config webpack.worklet.dev.js", "webpack:worklet:dev": "webpack --config webpack.worklet.dev.js",
"webpack:worklet:prod": "webpack --config webpack.worklet.prod.js", "webpack:worklet:prod": "webpack --config webpack.worklet.prod.js",
"build:worklet:dev": "npm-run-all clean:worklet webpack:worklet:dev", "build:worklet:dev": "npm-run-all clean:worklet webpack:worklet:dev",
"build:worklet:prod": "npm-run-all clean:worklet webpack:worklet:prod", "build:worklet:prod": "npm-run-all clean:worklet webpack:worklet:prod",
"clean": "rimraf dist/*", "clean": "rimraf dist/",
"webpack:dev": "webpack --config webpack.dev.js", "webpack:dev": "webpack --config webpack.dev.js",
"webpack:prod": "webpack --config webpack.prod.js", "webpack:prod": "webpack --config webpack.prod.js",
"build:dev": "npm-run-all build:worklet:dev clean webpack:dev", "build:dev": "npm-run-all build:worklet:dev clean webpack:dev",