Skip to content

Commit

Permalink
chore: update build cache
Browse files Browse the repository at this point in the history
  • Loading branch information
bubkoo committed Nov 9, 2022
1 parent 189352a commit b450a46
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,24 @@
"clean": {
"outputs": []
},
"build:esm": {
"dependsOn": ["^build:dev"],
"outputs": ["es/**", "src/style/raw.ts"]
},
"build:cjs": {
"dependsOn": ["^build:dev"],
"outputs": ["lib/**", "src/style/raw.ts"]
},
"build:umd": {
"dependsOn": ["^build:dev"],
"outputs": ["dist/**", "src/style/raw.ts"]
},
"build:dev": {
"dependsOn": ["^build:dev"],
"outputs": ["lib/**", "es/**", "src/style/raw.ts"]
},
"build": {
"dependsOn": ["^build"],
"dependsOn": ["^build:dev"],
"outputs": ["lib/**", "es/**", "dist/**", "src/style/raw.ts"]
},
"test": {
Expand Down

0 comments on commit b450a46

Please sign in to comment.