Skip to content

Commit

Permalink
ci: fix prebuild for yarn v4
Browse files Browse the repository at this point in the history
  • Loading branch information
oscb committed Nov 28, 2023
1 parent b26ba18 commit 5fcb6f3
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,13 @@
],
"scripts": {
"prebuild": "node constants-generator.js && eslint --fix ./src/info.ts",
"build": "bob build",
"clean": "rimraf lib node_modules",
"build": "yarn prebuild && bob build",
"clean": "rimraf lib node_modules ./src/info.ts",
"release": "semantic-release",
"test": "jest",
"typescript": "tsc --noEmit",
"postversion": "yarn prebuild"
"postversion": "yarn prebuild",
"prepublish": "yarn prebuild"
},
"dependencies": {
"@segment/tsub": "^2",
Expand Down

0 comments on commit 5fcb6f3

Please sign in to comment.