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 3c65438 commit 2bc4e41Copy full SHA for 2bc4e41
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@tinkoff/utils",
3
- "version": "0.0.0",
+ "version": "1.0.0",
4
"author": "Tinkoff team",
5
"scripts": {
6
"release": "node ./releaseUtils/index.js",
releaseUtils/publish.js
@@ -2,6 +2,6 @@
const execa = require('execa');
const publish = (dir, npmTag) =>
- execa.shell(`npm publish ${dir} --tag ${npmTag}`);
+ execa.shell(`npm publish --access public ${dir} --tag ${npmTag}`);
7
module.exports = publish;
0 commit comments