Skip to content

Commit

Permalink
Fix #3619 by scripting the copy of the README.md file to the parcel-b…
Browse files Browse the repository at this point in the history
…undler folder. (#3707)
  • Loading branch information
nicolas-van authored and devongovett committed Oct 31, 2019
1 parent cf83b72 commit 939ce41
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions packages/core/parcel-bundler/.gitignore
Expand Up @@ -8,3 +8,4 @@ test/integration/**/Cargo.lock
test/**/yarn.lock
test/**/package-lock.json
test/integration/babel-plugin-autoinstall/package.json
README.md
5 changes: 3 additions & 2 deletions packages/core/parcel-bundler/package.json
Expand Up @@ -12,7 +12,8 @@
"bin/",
"lib/",
"src/",
"index.js"
"index.js",
"README.md"
],
"dependencies": {
"@babel/code-frame": "^7.0.0",
Expand Down Expand Up @@ -130,7 +131,7 @@
"test-ci": "yarn test-coverage && yarn report-coverage",
"format": "prettier --write \"./{src,bin,test}/**/*.{js,json,md}\"",
"build": "yarn minify && babel src -d lib && ncp src/builtins lib/builtins",
"prepublish": "yarn build",
"prepublish": "yarn build && cp ../../../README.md .",
"minify": "terser -c -m -o src/builtins/prelude.min.js src/builtins/prelude.js && terser -c -m -o src/builtins/prelude2.min.js src/builtins/prelude2.js",
"precommit": "lint-staged",
"lint": "eslint . && prettier \"./{src,bin,test}/**/*.{js,json,md}\" --list-different",
Expand Down

0 comments on commit 939ce41

Please sign in to comment.