Skip to content

Commit 8945c7e

Browse files
authored
Merge branch 'trunk' into set-sapi-name
2 parents 067e7c6 + acdcb5f commit 8945c7e

File tree

38 files changed

+68
-20
lines changed

38 files changed

+68
-20
lines changed

.vscode/settings.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"eslint.validate": [
44
"json"
55
],
6+
"eslint.useFlatConfig": false,
67
"files.associations": {
78
"*.embeddedhtml": "html",
89
"api-extractor-base.json": "jsonc",

packages/docs/site/project.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@
8383
"executor": "@nx/linter:eslint",
8484
"outputs": ["{options.outputFile}"],
8585
"options": {
86+
"useFlatConfig": false,
8687
"lintFilePatterns": ["packages/docs/site/**/*.ts"],
8788
"maxWarnings": 0
8889
}

packages/docs/site/sidebars.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ const sidebars = {
110110
'blueprints/json-api-and-function-api',
111111
],
112112
},
113-
113+
'blueprints/bundles',
114114
'blueprints/examples',
115115
'blueprints/troubleshoot-and-debug-blueprints',
116116
],

packages/nx-extensions/project.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
"executor": "@nx/linter:eslint",
4242
"outputs": ["{options.outputFile}"],
4343
"options": {
44+
"useFlatConfig": false,
4445
"lintFilePatterns": [
4546
"packages/nx-extensions/**/*.ts",
4647
"packages/nx-extensions/generators.json",

packages/nx-extensions/src/executors/package-json/executor.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,15 @@ async function buildPackageJson(
156156
}
157157
packageJson.main = main;
158158

159+
// Playground-client is a dependency-less package. Let's make sure it can be installed
160+
// without bringing in any other packages.
161+
if ('playground-client' === context.projectName) {
162+
delete packageJson.overrides;
163+
delete packageJson.dependencies;
164+
delete packageJson.devDependencies;
165+
delete packageJson.optionalDependencies;
166+
}
167+
159168
fs.writeFileSync(
160169
options.outputPath + '/package.json',
161170
serializeJson(packageJson)

packages/php-wasm/cli/project.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@
9999
"executor": "@nx/linter:eslint",
100100
"outputs": ["{options.outputFile}"],
101101
"options": {
102+
"useFlatConfig": false,
102103
"lintFilePatterns": ["packages/php-wasm/cli/**/*.ts"],
103104
"maxWarnings": 0
104105
}

packages/php-wasm/fs-journal/project.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@
6262
"executor": "@nx/linter:eslint",
6363
"outputs": ["{options.outputFile}"],
6464
"options": {
65+
"useFlatConfig": false,
6566
"lintFilePatterns": ["packages/php-wasm/fs-journal/**/*.ts"],
6667
"maxWarnings": 0
6768
}

packages/php-wasm/logger/project.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@
6060
"executor": "@nx/linter:eslint",
6161
"outputs": ["{options.outputFile}"],
6262
"options": {
63+
"useFlatConfig": false,
6364
"lintFilePatterns": ["packages/php-wasm/logger/**/*.ts"],
6465
"maxWarnings": 0
6566
}

packages/php-wasm/node-polyfills/project.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@
6666
"executor": "@nx/linter:eslint",
6767
"outputs": ["{options.outputFile}"],
6868
"options": {
69+
"useFlatConfig": false,
6970
"lintFilePatterns": [
7071
"packages/php-wasm/node-polyfills/**/*.ts",
7172
"packages/php-wasm/node-polyfills/package.json"

packages/php-wasm/node/project.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -314,6 +314,7 @@
314314
"executor": "@nx/linter:eslint",
315315
"outputs": ["{options.outputFile}"],
316316
"options": {
317+
"useFlatConfig": false,
317318
"lintFilePatterns": ["packages/php-wasm/node/**/*.ts"],
318319
"maxWarnings": 0
319320
}

0 commit comments

Comments
 (0)