Skip to content

Commit 32069dd

Browse files
committed
build: re-run gen and cache build tasks
1 parent 0e574a4 commit 32069dd

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

examples/05-interoperability/07-converting-blocks-to-odt/tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"strict": true,
1616
"forceConsistentCasingInFileNames": true,
1717
"module": "ESNext",
18-
"moduleResolution": "Node",
18+
"moduleResolution": "bundler",
1919
"resolveJsonModule": true,
2020
"isolatedModules": true,
2121
"noEmit": true,

nx.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"build": {
1212
"cache": true,
1313
"dependsOn": ["^build"],
14-
"outputs": ["{projectRoot}/dist"]
14+
"outputs": ["{projectRoot}/dist", "{projectRoot}/types"]
1515
},
1616
"test": {
1717
"cache": true,

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"start:built": "npx serve playground/dist -c ../serve.json",
2626
"build:clean": "npm run clean && npm run gen && npm run clean && lerna run --stream build",
2727
"build": "lerna run --stream build",
28-
"build:site": "lerna run --stream docs:build --concurrency 1",
28+
"build:site": "npm run gen && lerna run --stream docs:build --concurrency 1",
2929
"lint": "lerna run --stream lint",
3030
"bootstrap": "lerna bootstrap --ci -- --force && patch-package",
3131
"install-new-packages": "lerna bootstrap -- --force && patch-package",

0 commit comments

Comments
 (0)