Fix test bundler (#1417) (#1418)

* Updated .gitignore

* Fix parcel build

* Updated .gitignore

Co-authored-by: Tomas Della Vedova <delvedor@users.noreply.github.com>
This commit is contained in:
github-actions[bot]
2021-03-10 14:57:10 +01:00
committed by GitHub
parent 0e2ae5452d
commit 7d776c15f7
2 changed files with 7 additions and 3 deletions

View File

@ -4,13 +4,16 @@
"description": "",
"main": "index.js",
"scripts": {
"start": "node bundle.js",
"build": "parcel build index.js --target node --bundle-node-modules --out-file bundle.js --no-source-maps --out-dir ."
"start": "node index.js",
"build": "parcel build index.js --no-source-maps"
},
"keywords": [],
"author": "",
"license": "ISC",
"engines": {
"node": ">=12"
},
"devDependencies": {
"parcel-bundler": "^1.12.4"
"parcel": "^2.0.0-beta.1"
}
}