removes incremental from build
This commit is contained in:
parent
8672d6d454
commit
1d77ca833e
5 changed files with 7 additions and 5 deletions
|
@ -23,7 +23,7 @@
|
||||||
"start:www": "yarn build:packages && lerna run start --parallel & cd packages/www && yarn dev",
|
"start:www": "yarn build:packages && lerna run start --parallel & cd packages/www && yarn dev",
|
||||||
"build": "yarn build:packages && cd packages/www && yarn build",
|
"build": "yarn build:packages && cd packages/www && yarn build",
|
||||||
"build:packages": "cd packages/core && yarn build && cd ../tldraw && yarn build",
|
"build:packages": "cd packages/core && yarn build && cd ../tldraw && yarn build",
|
||||||
"publish:patch": "yarn build:packages && lerna publish patch",
|
"publish:patch": "yarn build:packages && lerna publish patch --contents dist",
|
||||||
"docs": "lerna run docs --stream",
|
"docs": "lerna run docs --stream",
|
||||||
"docs:watch": "lerna run docs:watch --stream"
|
"docs:watch": "lerna run docs:watch --stream"
|
||||||
},
|
},
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@tldraw/core",
|
"name": "@tldraw/core",
|
||||||
"version": "0.0.67",
|
"version": "0.0.69",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "A tiny little drawing app (core).",
|
"description": "A tiny little drawing app (core).",
|
||||||
"author": "@steveruizok",
|
"author": "@steveruizok",
|
||||||
|
|
|
@ -11,6 +11,7 @@
|
||||||
"docs"
|
"docs"
|
||||||
],
|
],
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
|
"incremental": false,
|
||||||
"emitDeclarationOnly": true,
|
"emitDeclarationOnly": true,
|
||||||
"outDir": "./dist/types"
|
"outDir": "./dist/types"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@tldraw/tldraw",
|
"name": "@tldraw/tldraw",
|
||||||
"version": "0.0.67",
|
"version": "0.0.69",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "A tiny little drawing app (editor).",
|
"description": "A tiny little drawing app (editor).",
|
||||||
"author": "@steveruizok",
|
"author": "@steveruizok",
|
||||||
|
|
|
@ -11,6 +11,7 @@
|
||||||
"docs"
|
"docs"
|
||||||
],
|
],
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
|
"incremental": false,
|
||||||
"emitDeclarationOnly": true,
|
"emitDeclarationOnly": true,
|
||||||
"outDir": "./dist/types"
|
"outDir": "./dist/types"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue