File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -23,12 +23,14 @@ jobs:
23
23
cache : yarn
24
24
25
25
- name : Install Dependencies
26
- run : yarn install --frozen-lockfile
26
+ run : yarn install --immutable
27
27
28
28
- name : Create Release Pull Request or Publish to npm
29
29
id : changesets
30
30
uses : changesets/action@v1
31
31
with :
32
+ version : yarn version:packages
33
+
32
34
# This expects you to have a script called release which does a build for your packages and calls changeset publish
33
35
title : " chore: release"
34
36
commit : " chore: release"
Original file line number Diff line number Diff line change @@ -8,7 +8,6 @@ module.exports = {
8
8
] ,
9
9
"package.json" : ( files ) => [
10
10
"yarn constraints --fix" ,
11
- "yarn install" ,
12
11
`eslint --fix --cache --no-error-on-unmatched-pattern --quiet ${ files . join ( " " ) } ` ,
13
12
] ,
14
13
"dist/*.css" : [
Original file line number Diff line number Diff line change 53
53
"tester" : " cross-env NODE_ENV=development nx run storybook:test:scope" ,
54
54
"validate" : " yarn validator tag:component" ,
55
55
"validator" : " nx run-many --target validate --verbose --projects" ,
56
- "version:packages" : " changeset version && yarn --mode= \" update-lockfile \" "
56
+ "version:packages" : " changeset version && yarn constraints --fix && yarn install "
57
57
},
58
58
"workspaces" : [
59
59
" components/*" ,
You can’t perform that action at this time.
0 commit comments