We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 871a268 commit cd8914aCopy full SHA for cd8914a
.github/workflows/publish.yml
@@ -28,4 +28,6 @@ jobs:
28
run: npm run-script build:ci
29
30
- name: Publish
31
- run: node tools/build.js publish
+ uses: author/action-publish@stable
32
+ with:
33
+ scan: './dist'
tools/buildTools/normalize.js
@@ -55,6 +55,10 @@ function normalize() {
55
packageJson.version = version;
56
}
57
58
+ if (packageJson.version == '0.0.0') {
59
+ packageJson.private = true;
60
+ }
61
+
62
knownCustomizedPackages[packageName] = packageJson.version;
63
64
packageJson.typings = './lib/index.d.ts';
0 commit comments