@html-validate/release-scripts 3.4.0 → 3.4.8
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.
- package/README.md +12 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -10,7 +10,7 @@ Various scripts used by release toolchain.
|
|
|
10
10
|
{
|
|
11
11
|
"scripts": {
|
|
12
12
|
"prepack": "release-prepack package.json",
|
|
13
|
-
"postpack": "release-postpack package.json"
|
|
13
|
+
"postpack": "release-postpack package.json",
|
|
14
14
|
"prepublishOnly": "release-prepublish package.json",
|
|
15
15
|
"postpublish": "release-postpublish package.json"
|
|
16
16
|
}
|
|
@@ -19,3 +19,14 @@ Various scripts used by release toolchain.
|
|
|
19
19
|
|
|
20
20
|
If the library or CLI tool bundles all dependencies use `release-prepack package.json --bundle`.
|
|
21
21
|
Dependencies can also be filtered by marking dependencies as external: `--bundle --external:foo --external:bar`.
|
|
22
|
+
|
|
23
|
+
```json
|
|
24
|
+
{
|
|
25
|
+
"scripts": {
|
|
26
|
+
"prepack": "release-prepack package.json --bundle --external:foo --external:bar",
|
|
27
|
+
"postpack": "release-postpack package.json",
|
|
28
|
+
"prepublishOnly": "release-prepublish package.json --bundle --external:foo --external:bar",
|
|
29
|
+
"postpublish": "release-postpublish package.json"
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@html-validate/release-scripts",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.8",
|
|
4
4
|
"description": "Various script used by release toolchain",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"release"
|
|
@@ -17,10 +17,10 @@
|
|
|
17
17
|
"license": "MIT",
|
|
18
18
|
"author": "David Sveningsson <ext@sidvind.com>",
|
|
19
19
|
"bin": {
|
|
20
|
-
"release-prepublish": "scripts/
|
|
20
|
+
"release-prepublish": "scripts/prepack",
|
|
21
21
|
"release-prepack": "scripts/prepack",
|
|
22
22
|
"release-postpack": "scripts/postpack",
|
|
23
|
-
"release-postpublish": "scripts/
|
|
23
|
+
"release-postpublish": "scripts/postpack"
|
|
24
24
|
},
|
|
25
25
|
"files": [
|
|
26
26
|
"lib",
|
|
@@ -38,5 +38,5 @@
|
|
|
38
38
|
"publishConfig": {
|
|
39
39
|
"access": "public"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "ef1084ba6e80f2b2fd405e532e6e99592b19873b"
|
|
42
42
|
}
|