Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: incremental tsc builds #9049

Merged
merged 1 commit into from
Oct 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/-ember-data/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"scripts": {
"lint": "eslint . --quiet --cache --cache-strategy=content --ext .js,.ts,.mjs,.cjs",
"move-dts": "bun ../../scripts/copy-declarations.mjs addon",
"build:types": "tsc --build --force",
"build:types": "tsc --build",
"_build": "pnpm build:types && pnpm move-dts",
"prepack": "pnpm build && cd ../../ && pnpm build:docs",
"_syncPnpm": "pnpm sync-dependencies-meta-injected"
Expand Down
2 changes: 1 addition & 1 deletion packages/-ember-data/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

// Enable faster builds
// but causes us to not rebuild properly
"incremental": false,
"incremental": true,

"declaration": true,
"declarationMap": true,
Expand Down
2 changes: 1 addition & 1 deletion packages/active-record/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
},
"scripts": {
"lint": "eslint . --quiet --cache --cache-strategy=content --ext .js,.ts,.mjs,.cjs",
"build:types": "tsc --build --force",
"build:types": "tsc --build",
"build:client": "rollup --config && babel ./addon --out-dir addon --plugins=../private-build-infra/src/transforms/babel-plugin-transform-ext.js",
"_build": "pnpm build:client && pnpm build:types",
"prepack": "pnpm build",
Expand Down
2 changes: 1 addition & 1 deletion packages/active-record/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

// Enable faster builds
// but causes us to not rebuild properly
"incremental": false,
"incremental": true,

"declaration": true,
"declarationMap": true,
Expand Down
2 changes: 1 addition & 1 deletion packages/adapter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"directories": {},
"scripts": {
"lint": "eslint . --quiet --cache --cache-strategy=content --ext .js,.ts,.mjs,.cjs",
"build:types": "tsc --build --force",
"build:types": "tsc --build",
"build:client": "rollup --config && babel ./addon --out-dir addon --plugins=../private-build-infra/src/transforms/babel-plugin-transform-ext.js",
"_build": "pnpm build:client && pnpm build:types",
"prepack": "pnpm build",
Expand Down
2 changes: 1 addition & 1 deletion packages/adapter/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

// Enable faster builds
// but causes us to not rebuild properly
"incremental": false,
"incremental": true,

"declaration": true,
"declarationMap": true,
Expand Down
2 changes: 1 addition & 1 deletion packages/core-types/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"author": "Chris Thoburn <runspired@users.noreply.github.com>",
"scripts": {
"lint": "eslint . --quiet --cache --cache-strategy=content --ext .js,.ts,.mjs,.cjs",
"build:types": "tsc --build --force",
"build:types": "tsc --build",
"build:client": "rollup --config && babel ./addon --out-dir addon --plugins=../private-build-infra/src/transforms/babel-plugin-transform-ext.js",
"_build": "pnpm build:client && pnpm build:types",
"prepack": "pnpm build",
Expand Down
2 changes: 1 addition & 1 deletion packages/core-types/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

// Enable faster builds
// but causes us to not rebuild properly
"incremental": false,
"incremental": true,

// Support generation of source maps. Note: you must *also* enable source
// maps in your `ember-cli-babel` config and/or `babel.config.js`.
Expand Down
2 changes: 1 addition & 1 deletion packages/diagnostic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
"scripts": {
"lint": "eslint . --quiet --cache --cache-strategy=content --ext .js,.ts,.mjs,.cjs",
"build:tests": "rm -rf dist-test && cp -R test dist-test && mkdir -p dist-test/@warp-drive && cp -R dist dist-test/@warp-drive/diagnostic",
"build:types": "tsc --build --force",
"build:types": "tsc --build",
"build:runtime": "rollup --config",
"_build": "pnpm build:runtime && pnpm build:types",
"start": "rollup --config --watch",
Expand Down
2 changes: 1 addition & 1 deletion packages/diagnostic/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

// Enable faster builds
// but causes us to not rebuild properly
"incremental": false,
"incremental": true,

"declaration": true,
"declarationMap": true,
Expand Down
2 changes: 1 addition & 1 deletion packages/graph/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"author": "Chris Thoburn <runspired@users.noreply.github.com>",
"scripts": {
"lint": "eslint . --quiet --cache --cache-strategy=content --ext .js,.ts,.mjs,.cjs",
"build:types": "tsc --build --force",
"build:types": "tsc --build",
"build:client": "rollup --config && babel ./addon --out-dir addon --plugins=../private-build-infra/src/transforms/babel-plugin-transform-ext.js",
"_build": "pnpm build:client && pnpm build:types",
"prepack": "pnpm build",
Expand Down
2 changes: 1 addition & 1 deletion packages/graph/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

// Enable faster builds
// but causes us to not rebuild properly
"incremental": false,
"incremental": true,

"declaration": true,
"declarationMap": true,
Expand Down
2 changes: 1 addition & 1 deletion packages/holodeck/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"holodeck": "./bin/holodeck.js"
},
"scripts": {
"build:types": "tsc --build --force",
"build:types": "tsc --build",
"build:client": "rollup --config",
"_build": "pnpm build:client && pnpm build:types",
"start": "rollup --config --watch",
Expand Down
2 changes: 1 addition & 1 deletion packages/holodeck/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

// Enable faster builds
// but causes us to not rebuild properly
"incremental": false,
"incremental": true,

// Support generation of source maps. Note: you must *also* enable source
// maps in your `ember-cli-babel` config and/or `babel.config.js`.
Expand Down
2 changes: 1 addition & 1 deletion packages/json-api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"author": "",
"scripts": {
"lint": "eslint . --quiet --cache --cache-strategy=content --ext .js,.ts,.mjs,.cjs",
"build:types": "tsc --build --force",
"build:types": "tsc --build",
"build:client": "rollup --config && babel ./addon --out-dir addon --plugins=../private-build-infra/src/transforms/babel-plugin-transform-ext.js",
"_build": "pnpm build:client && pnpm build:types",
"prepack": "pnpm build",
Expand Down
2 changes: 1 addition & 1 deletion packages/json-api/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

// Enable faster builds
// but causes us to not rebuild properly
"incremental": false,
"incremental": true,

"declaration": true,
"declarationMap": true,
Expand Down
2 changes: 1 addition & 1 deletion packages/legacy-compat/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
},
"scripts": {
"lint": "eslint . --quiet --cache --cache-strategy=content --ext .js,.ts,.mjs,.cjs",
"build:types": "tsc --build --force",
"build:types": "tsc --build",
"build:client": "rollup --config && babel ./addon --out-dir addon --plugins=../private-build-infra/src/transforms/babel-plugin-transform-ext.js",
"_build": "pnpm build:client && pnpm build:types",
"prepack": "pnpm build",
Expand Down
2 changes: 1 addition & 1 deletion packages/legacy-compat/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

// Enable faster builds
// but causes us to not rebuild properly
"incremental": false,
"incremental": true,

"declaration": true,
"declarationMap": true,
Expand Down
2 changes: 1 addition & 1 deletion packages/model/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"scripts": {
"lint": "eslint . --quiet --cache --cache-strategy=content --ext .js,.ts,.mjs,.cjs",
"move-dts": "bun ../../scripts/copy-declarations.mjs src",
"build:types": "tsc --build --force && pnpm move-dts",
"build:types": "tsc --build && pnpm move-dts",
"build:client": "rollup --config && babel ./addon --out-dir addon --plugins=../private-build-infra/src/transforms/babel-plugin-transform-ext.js",
"_build": "pnpm build:client && pnpm build:types",
"prepack": "pnpm build",
Expand Down
2 changes: 1 addition & 1 deletion packages/model/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

// Enable faster builds
// but causes us to not rebuild properly
"incremental": false,
"incremental": true,

"declaration": true,
"declarationMap": true,
Expand Down
2 changes: 1 addition & 1 deletion packages/request-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
},
"scripts": {
"lint": "eslint . --quiet --cache --cache-strategy=content --ext .js,.ts,.mjs,.cjs",
"build:types": "tsc --build --force",
"build:types": "tsc --build",
"build:client": "rollup --config && babel ./addon --out-dir addon --plugins=../private-build-infra/src/transforms/babel-plugin-transform-ext.js",
"_build": "pnpm build:client && pnpm build:types",
"prepack": "pnpm build",
Expand Down
2 changes: 1 addition & 1 deletion packages/request-utils/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

// Enable faster builds
// but causes us to not rebuild properly
"incremental": false,
"incremental": true,

"declaration": true,
"declarationMap": true,
Expand Down
2 changes: 1 addition & 1 deletion packages/request/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
],
"scripts": {
"lint": "eslint . --quiet --cache --cache-strategy=content --ext .js,.ts,.mjs,.cjs",
"build:types": "tsc --build --force",
"build:types": "tsc --build",
"build:client": "rollup --config && babel ./addon --out-dir addon --plugins=../private-build-infra/src/transforms/babel-plugin-transform-ext.js",
"_build": "pnpm build:client && pnpm build:types",
"prepack": "pnpm build",
Expand Down
2 changes: 1 addition & 1 deletion packages/request/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

// Enable faster builds
// but causes us to not rebuild properly
"incremental": false,
"incremental": true,

"declaration": true,
"declarationMap": true,
Expand Down
2 changes: 1 addition & 1 deletion packages/rest/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
},
"scripts": {
"lint": "eslint . --quiet --cache --cache-strategy=content --ext .js,.ts,.mjs,.cjs",
"build:types": "tsc --build --force",
"build:types": "tsc --build",
"build:client": "rollup --config && babel ./addon --out-dir addon --plugins=../private-build-infra/src/transforms/babel-plugin-transform-ext.js",
"_build": "pnpm build:client && pnpm build:types",
"prepack": "pnpm build",
Expand Down
2 changes: 1 addition & 1 deletion packages/rest/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

// Enable faster builds
// but causes us to not rebuild properly
"incremental": false,
"incremental": true,

"declaration": true,
"declarationMap": true,
Expand Down
2 changes: 1 addition & 1 deletion packages/serializer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"directories": {},
"scripts": {
"lint": "eslint . --quiet --cache --cache-strategy=content --ext .js,.ts,.mjs,.cjs",
"build:types": "tsc --build --force",
"build:types": "tsc --build",
"build:client": "rollup --config && babel ./addon --out-dir addon --plugins=../private-build-infra/src/transforms/babel-plugin-transform-ext.js",
"_build": "pnpm build:client && pnpm build:types",
"prepack": "pnpm build",
Expand Down
2 changes: 1 addition & 1 deletion packages/serializer/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

// Enable faster builds
// but causes us to not rebuild properly
"incremental": false,
"incremental": true,

"declaration": true,
"declarationMap": true,
Expand Down
2 changes: 1 addition & 1 deletion packages/store/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"scripts": {
"lint": "eslint . --quiet --cache --cache-strategy=content --ext .js,.ts,.mjs,.cjs",
"build:runtime": "rollup --config && babel ./addon --out-dir addon --plugins=../private-build-infra/src/transforms/babel-plugin-transform-ext.js",
"build:types": "tsc --build --force",
"build:types": "tsc --build",
"_build": "pnpm build:runtime && pnpm build:types",
"prepack": "pnpm build",
"_syncPnpm": "pnpm sync-dependencies-meta-injected"
Expand Down
2 changes: 1 addition & 1 deletion packages/store/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

// Enable faster builds
// but causes us to not rebuild properly
"incremental": false,
"incremental": true,

"declaration": true,
"declarationMap": true,
Expand Down
2 changes: 1 addition & 1 deletion packages/tracking/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
"scripts": {
"lint": "eslint . --quiet --cache --cache-strategy=content --ext .js,.ts,.mjs,.cjs",
"build:runtime": "rollup --config && babel ./addon --out-dir addon --plugins=../private-build-infra/src/transforms/babel-plugin-transform-ext.js",
"build:types": "tsc --build --force",
"build:types": "tsc --build",
"_build": "pnpm build:runtime && pnpm build:types",
"prepack": "pnpm build",
"_syncPnpm": "pnpm sync-dependencies-meta-injected"
Expand Down
2 changes: 1 addition & 1 deletion packages/tracking/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

// Enable faster builds
// but causes us to not rebuild properly
"incremental": false,
"incremental": true,

"declaration": true,
"declarationMap": true,
Expand Down
Loading