Skip to content

Commit

Permalink
Fixed create build cache issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ntotten committed Aug 26, 2024
1 parent 20e6e39 commit b896d94
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion examples/many-apis/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
"type": "module",
"scripts": {
"dev": "serve --cors -p 5942 apis & zudoku dev",
"build": "zudoku build",
"build": "echo 'Not implemented yet'",
"disabled_build": "zudoku build",
"download": "node download.js",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0"
},
Expand Down
1 change: 1 addition & 0 deletions examples/with-vite-config/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
stats.html
1 change: 0 additions & 1 deletion packages/create-zudoku-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
"react",
"zudoku"
],
"main": "./dist/index.js",
"description": "Create Zudoku docs site with one command",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/create-zudoku-app/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"targets": {
"build": {
"inputs": ["{projectRoot}/**/*.ts", "{projectRoot}/templates/**"],
"outputs": ["{workspaceRoot}/dist"],
"outputs": ["{projectRoot}/dist"],
"cache": true
},
"build:ci": {
Expand Down

0 comments on commit b896d94

Please sign in to comment.