1
0
mirror of https://github.com/dzeiocom/libs.git synced 2025-06-13 19:29:19 +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

@ -9,24 +9,17 @@
"main": "./dist/URLManager.js",
"types": "./dist/URLManager.d.ts",
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.10.4",
"@types/chai": "^4.2.12",
"@types/jest": "^26.0.10",
"babel-loader": "^8.1.0",
"codecov": "^3.7.2",
"jest": "^26.4.2",
"parcel": "^1.12.4",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.3",
"ts-node": "^9.0.0",
"typescript": "^4.0.2",
"webpack": "^5.10.0",
"webpack-cli": "^4.2.0"
"typescript": "^4.0.2"
},
"scripts": {
"prepublishOnly": "yarn build",
"build": "webpack --mode=\"production\" && tsc",
"build": "parcel build src/index.ts --out-file browser.js --experimental-scope-hoisting && tsc",
"test": "jest --coverage"
}
}