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 delvedor
parent 7b21f92ceb
commit ace70aea08
2 changed files with 7 additions and 3 deletions

1
.gitignore vendored
View File

@ -60,3 +60,4 @@ test/benchmarks/macro/fixtures/*
.cache
test/bundlers/**/bundle.js
test/bundlers/parcel-test/.parcel-cache

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"
}
}