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 44
44
"format:code:eslint" : " eslint \" **/*.{ts,tsx}\" --fix" ,
45
45
"format:yarn:lock" : " yarn-deduplicate yarn.lock --strategy highest" ,
46
46
"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 " ,
49
49
"test" : " run-p test:depcruise test:jest test:code:gen test:snapshot" ,
50
50
"test:code:gen" : " pnpm ts ./scripts/testCodeGen.ts" ,
51
51
"test:depcruise" : " depcruise --validate .dependency-cruiser.js src" ,
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ const generateVersionTsFile = () => {
12
12
const codes : string [ ] = [ `export const Name = "${ pkg . name } ";` , `export const Version = "${ pkg . version } ";` ] ;
13
13
const tscCode = codes . join ( EOL ) ;
14
14
if ( process . env . CI ) {
15
- console . log ( "` Update src/meta.ts file." ) ;
15
+ console . log ( "Update src/meta.ts file." ) ;
16
16
fs . writeFileSync ( "src/meta.ts" , tscCode , "utf-8" ) ;
17
17
}
18
18
} ;
You can’t perform that action at this time.
0 commit comments