File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 4444 "format:code:eslint" : " eslint \" **/*.{ts,tsx}\" --fix" ,
4545 "format:yarn:lock" : " yarn-deduplicate yarn.lock --strategy highest" ,
4646 "lerna:version:up" : " lerna version --yes" ,
47- "release:github:registry" : " pnpm publish --registry https://npm.pkg.github.com/:_authToken=${NODE_AUTH_TOKEN}" ,
48- "release:npm:registry" : " pnpm publish" ,
47+ "release:github:registry" : " pnpm publish --no-git-checks --registry https://npm.pkg.github.com/:_authToken=${NODE_AUTH_TOKEN}" ,
48+ "release:npm:registry" : " pnpm publish --no-git-checks " ,
4949 "test" : " run-p test:depcruise test:jest test:code:gen test:snapshot" ,
5050 "test:code:gen" : " pnpm ts ./scripts/testCodeGen.ts" ,
5151 "test:depcruise" : " depcruise --validate .dependency-cruiser.js src" ,
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ const generateVersionTsFile = () => {
1212 const codes : string [ ] = [ `export const Name = "${ pkg . name } ";` , `export const Version = "${ pkg . version } ";` ] ;
1313 const tscCode = codes . join ( EOL ) ;
1414 if ( process . env . CI ) {
15- console . log ( "` Update src/meta.ts file." ) ;
15+ console . log ( "Update src/meta.ts file." ) ;
1616 fs . writeFileSync ( "src/meta.ts" , tscCode , "utf-8" ) ;
1717 }
1818} ;
You can’t perform that action at this time.
0 commit comments