Skip to content

Commit 2bc4e41

Browse files
committed
Release module in npm
1 parent 3c65438 commit 2bc4e41

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tinkoff/utils",
3-
"version": "0.0.0",
3+
"version": "1.0.0",
44
"author": "Tinkoff team",
55
"scripts": {
66
"release": "node ./releaseUtils/index.js",

releaseUtils/publish.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
const execa = require('execa');
33

44
const publish = (dir, npmTag) =>
5-
execa.shell(`npm publish ${dir} --tag ${npmTag}`);
5+
execa.shell(`npm publish --access public ${dir} --tag ${npmTag}`);
66

77
module.exports = publish;

0 commit comments

Comments
 (0)