Skip to content

Commit

Permalink
build: remove now unnecessary --no-scope-hoist flag for build and rem…
Browse files Browse the repository at this point in the history
…ove known issue from docs

see parcel issue parcel-bundler/parcel#7274 and pullrequest parcel-bundler/parcel#7288
  • Loading branch information
JonasDoesThings committed Apr 9, 2022
1 parent 384a1e9 commit 1991fff
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 0 additions & 3 deletions README.md
Expand Up @@ -23,9 +23,6 @@ This is project is provided for free by my company [nxt3.at](https://nxt3.at). I

Live version of the dev branch: https://dev.sankeydiagram-net.pages.dev/

### Known Issues
* Due to issues with parceljs ([issue#7274](https://github.com/parcel-bundler/parcel/issues/7274) [pr#7288](https://github.com/parcel-bundler/parcel/pull/7288)) scope hoisting had to be disabled in the build script until parcel releases a fix.

## Credits
### Major Libraries Used
* The Sankey Diagram D3 extension is based on https://github.com/ricklupton/d3-sankey-diagram
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -5,7 +5,7 @@
"browserslist": ["defaults"],
"scripts": {
"start": "parcel ./src/*.html",
"build": "parcel build --no-scope-hoist ./src/index.html ./src/404.html ./src/privacypolicy.html ./src/legalnotice.html",
"build": "parcel build ./src/index.html ./src/404.html ./src/privacypolicy.html ./src/legalnotice.html",
"lint": "eslint src/**/*.js",
"lint:fix": "eslint --fix src/**/*.js"
},
Expand Down

0 comments on commit 1991fff

Please sign in to comment.