Skip to content

Commit b9baf2c

Browse files
authored
fix: add public access for publishing the scoped package (#131)
1 parent bfd1049 commit b9baf2c

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

.gitlab-ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ release_dry_run:
6060
stage: release
6161
script:
6262
- echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > ~/.npmrc
63+
- echo ${#NPM_TOKEN}
6364
- npm publish --dry-run
6465
- rm -f ~/.npmrc
6566
dependencies:
@@ -72,6 +73,7 @@ pre_release:
7273
stage: release
7374
script:
7475
- echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > ~/.npmrc
76+
- echo ${#NPM_TOKEN}
7577
- npm publish --tag prerelease
7678
- rm -f ~/.npmrc
7779
rules:

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@splunk/rum-cli",
3-
"version": "0.0.1-alpha.2",
3+
"version": "0.0.1-alpha.3",
44
"description": "Tools for handling symbol and mapping files for symbolication",
55
"main": "./dist/index.js",
66
"files": [
@@ -22,6 +22,9 @@
2222
],
2323
"repository": "[email protected]:signalfx/splunk-rum-cli.git",
2424
"homepage": "https://github.com/signalfx/splunk-rum-cli#readme",
25+
"publishConfig": {
26+
"access": "public"
27+
},
2528
"author": "Splunk <[email protected]>",
2629
"license": "Apache-2.0",
2730
"engines": {

0 commit comments

Comments
 (0)