File tree 5 files changed +11
-11
lines changed
5 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 86
86
87
87
# Start local registry
88
88
tmp_registry_log=` mktemp`
89
- nohup npx verdaccio@2.7.2 -c tasks/verdaccio.yaml & > $tmp_registry_log &
89
+ nohup npx verdaccio@3.2.0 -c tasks/verdaccio.yaml & > $tmp_registry_log &
90
90
# Wait for `verdaccio` to boot
91
91
grep -q ' http address' <( tail -f $tmp_registry_log )
92
92
@@ -95,7 +95,7 @@ npm set registry "$custom_registry_url"
95
95
yarn config set registry " $custom_registry_url "
96
96
97
97
# Login so we can publish packages
98
- npx npm-cli-login@0 .0.10 -u user -p password -e user@example.com -r " $custom_registry_url " --quotes
98
+ (cd && npx npm-auth-to-token@1 .0.0 -u user -p password -e user@example.com -r " $custom_registry_url " )
99
99
100
100
# Publish the monorepo
101
101
git clean -df
Original file line number Diff line number Diff line change 79
79
80
80
# Start local registry
81
81
tmp_registry_log=` mktemp`
82
- nohup npx verdaccio@2.7.2 -c tasks/verdaccio.yaml & > $tmp_registry_log &
82
+ nohup npx verdaccio@3.2.0 -c tasks/verdaccio.yaml & > $tmp_registry_log &
83
83
# Wait for `verdaccio` to boot
84
84
grep -q ' http address' <( tail -f $tmp_registry_log )
85
85
@@ -88,7 +88,7 @@ npm set registry "$custom_registry_url"
88
88
yarn config set registry " $custom_registry_url "
89
89
90
90
# Login so we can publish packages
91
- npx npm-cli-login@0 .0.10 -u user -p password -e user@example.com -r " $custom_registry_url " --quotes
91
+ (cd && npx npm-auth-to-token@1 .0.0 -u user -p password -e user@example.com -r " $custom_registry_url " )
92
92
93
93
# Publish the monorepo
94
94
git clean -df
Original file line number Diff line number Diff line change 73
73
74
74
# Start local registry
75
75
tmp_registry_log=` mktemp`
76
- nohup npx verdaccio@2.7.2 -c tasks/verdaccio.yaml & > $tmp_registry_log &
76
+ nohup npx verdaccio@3.2.0 -c tasks/verdaccio.yaml & > $tmp_registry_log &
77
77
# Wait for `verdaccio` to boot
78
78
grep -q ' http address' <( tail -f $tmp_registry_log )
79
79
@@ -82,7 +82,7 @@ npm set registry "$custom_registry_url"
82
82
yarn config set registry " $custom_registry_url "
83
83
84
84
# Login so we can publish packages
85
- npx npm-cli-login@0 .0.10 -u user -p password -e user@example.com -r " $custom_registry_url " --quotes
85
+ (cd && npx npm-auth-to-token@1 .0.0 -u user -p password -e user@example.com -r " $custom_registry_url " )
86
86
87
87
git clean -df
88
88
./tasks/publish.sh --yes --force-publish=* --skip-git --cd-version=prerelease --exact --npm-tag=latest
Original file line number Diff line number Diff line change 86
86
87
87
# Start local registry
88
88
tmp_registry_log=` mktemp`
89
- nohup npx verdaccio@2.7.2 -c tasks/verdaccio.yaml & > $tmp_registry_log &
89
+ nohup npx verdaccio@3.2.0 -c tasks/verdaccio.yaml & > $tmp_registry_log &
90
90
# Wait for `verdaccio` to boot
91
91
grep -q ' http address' <( tail -f $tmp_registry_log )
92
92
@@ -95,7 +95,7 @@ npm set registry "$custom_registry_url"
95
95
yarn config set registry " $custom_registry_url "
96
96
97
97
# Login so we can publish packages
98
- npx npm-cli-login@0 .0.10 -u user -p password -e user@example.com -r " $custom_registry_url " --quotes
98
+ (cd && npx npm-auth-to-token@1 .0.0 -u user -p password -e user@example.com -r " $custom_registry_url " )
99
99
100
100
# Lint own code
101
101
./node_modules/.bin/eslint --max-warnings 0 packages/babel-preset-react-app/
Original file line number Diff line number Diff line change 1
1
#
2
- # This is the default config file. It allows all users to do anything,
3
- # so don't use it on production systems.
2
+ # This is based on verdaccio's default config file. It allows all users
3
+ # to do anything, so don't use it on production systems.
4
4
#
5
5
# Look here for more config file examples:
6
6
# https://github.com/verdaccio/verdaccio/tree/master/conf
@@ -25,7 +25,7 @@ packages:
25
25
' @*/* ' :
26
26
# scoped packages
27
27
access : $all
28
- publish : $ll
28
+ publish : $all
29
29
proxy : npmjs
30
30
31
31
' ** ' :
You can’t perform that action at this time.
0 commit comments