Skip to content
This repository has been archived by the owner on Jan 11, 2023. It is now read-only.

Allow building Sapper on Windows #1484

Merged
merged 1 commit into from
Oct 1, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 47 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@
"pretty-bytes": "^5.3.0",
"puppeteer": "^5.0.0",
"require-relative": "^0.8.7",
"rimraf": "^3.0.2",
"rollup": "^2.21.0",
"rollup-dependency-tree": "0.0.14",
"rollup-plugin-css-chunks": "^1.2.6",
Expand All @@ -79,8 +80,8 @@
"scripts": {
"test": "mocha --config=.mocharc.yml",
"pretest": "npm run check",
"build": "rm -rf dist && rollup -c",
"check": "rm -rf dist && cross-env TS_CHECK_ENABLED=true rollup -c",
"build": "rimraf dist && rollup -c",
"check": "rimraf dist && cross-env TS_CHECK_ENABLED=true rollup -c",
"lint": "eslint '{src,runtime}/**/*[!.d].{ts,js}'",
"prepare": "npm run build",
"dev": "rollup -cw",
Expand Down