We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fff4339 commit df1bddaCopy full SHA for df1bdda
resources/build-npm.js
@@ -96,11 +96,11 @@ function buildPackageJSON() {
96
assert(
97
['alpha', 'beta', 'rc'].includes(publishTag) ||
98
publishTag.startsWith('experimental-'),
99
- `"${publishTag}" tag is supported.`,
+ `"${publishTag}" tag is not supported.`,
100
);
101
102
assert(!packageJSON.publishConfig, 'Can not override "publishConfig".');
103
- packageJSON.publishConfig = { tag: publishTag || 'latest' };
+ packageJSON.publishConfig = { tag: publishTag };
104
}
105
106
return packageJSON;
0 commit comments