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 .cache
test/bundlers/**/bundle.js test/bundlers/**/bundle.js
test/bundlers/parcel-test/.parcel-cache

View File

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