prepare-package 0.0.5 → 0.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +2 -0
  2. package/package.json +1 -2
package/README.md CHANGED
@@ -40,6 +40,7 @@ npm install prepare-package --save-dev
40
40
  ## Example Setup
41
41
  After installing via npm, simply put this in your `package.json`
42
42
  ```json
43
+ ...
43
44
  "main": "dist/index.js",
44
45
  "scripts": {
45
46
  "prepare": "node -e 'require(`prepare-package`)'"
@@ -49,6 +50,7 @@ After installing via npm, simply put this in your `package.json`
49
50
  "output": "dist",
50
51
  "replace": {}
51
52
  },
53
+ ...
52
54
  ```
53
55
  * `preparePackage` is not required but you can provide it to customize the process.
54
56
  * `preparePackage.input`: The dir to copy **from**.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "prepare-package",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "description": "Prepare a Node.js package before being published",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -38,7 +38,6 @@
38
38
  "wonderful-fetch": "^0.0.5"
39
39
  },
40
40
  "devDependencies": {
41
- "fs-jetpack": "^4.3.1",
42
41
  "mocha": "^8.0.1"
43
42
  }
44
43
  }