1
0
mirror of https://github.com/dzeiocom/libs.git synced 2025-06-14 19:59:17 +00:00

Moved from Webpack to Parcel

Signed-off-by: Florian Bouillon <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-12-08 16:07:30 +01:00
parent 50d28076bf
commit e29eafd2d2
15 changed files with 2348 additions and 875 deletions

View File

@ -15,20 +15,15 @@
"ansi-colors": "^4.1.1"
},
"devDependencies": {
"@babel/core": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"babel-loader": "^8.1.0",
"eslint": "^7.4.0",
"ts-loader": "^8.0.6",
"typescript": "^4.0.3",
"webpack": "^5.10.0",
"webpack-cli": "^4.2.0"
"parcel": "^1.12.4",
"typescript": "^4.0.3"
},
"scripts": {
"prepublishOnly": "yarn build",
"build": "webpack --mode=\"production\" && tsc",
"build": "parcel build src/index.ts --out-file browser.js --experimental-scope-hoisting && tsc",
"test": "ts-node test"
}
}