Skip to content

Commit 7f310fe

Browse files
toddbaertbeeme1mr
andauthored
chore: update nx packages (#1147)
Signed-off-by: Todd Baert <[email protected]> Co-authored-by: Michael Beemer <[email protected]>
1 parent 19accf8 commit 7f310fe

File tree

92 files changed

+2024
-2077
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+2024
-2077
lines changed

.eslintrc.json

+27-6
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,7 @@
22
"root": true,
33
"ignorePatterns": ["**/*"],
44
"plugins": ["@nx"],
5-
"extends": [
6-
"eslint:recommended",
7-
"plugin:prettier/recommended"
8-
],
5+
"extends": ["eslint:recommended", "plugin:prettier/recommended"],
96
"overrides": [
107
{
118
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
@@ -28,17 +25,41 @@
2825
{
2926
"files": ["*.ts", "*.tsx"],
3027
"extends": ["plugin:@nx/typescript"],
31-
"rules": {}
28+
"rules": {
29+
"@typescript-eslint/no-extra-semi": "error",
30+
"no-extra-semi": "off"
31+
}
3232
},
3333
{
3434
"files": ["*.js", "*.jsx"],
3535
"extends": ["plugin:@nx/javascript"],
36-
"rules": {}
36+
"rules": {
37+
"@typescript-eslint/no-extra-semi": "error",
38+
"no-extra-semi": "off"
39+
}
3740
},
3841
{
3942
"files": "*.json",
4043
"parser": "jsonc-eslint-parser",
4144
"rules": {}
45+
},
46+
{
47+
"files": ["*.json"],
48+
"parser": "jsonc-eslint-parser",
49+
"rules": {
50+
"@nx/dependency-checks": [
51+
"error",
52+
{
53+
"buildTargets": ["lint"],
54+
"includeTransitiveDependencies": false,
55+
"checkMissingDependencies": true,
56+
"checkObsoleteDependencies": true,
57+
"checkVersionMismatches": true,
58+
"ignoredDependencies": ["jest-cucumber", "jest"],
59+
"ignoredFiles": ["**/*.spec.ts", "**/*.spec.js", "**/*.test.ts", "**/*.test.js"]
60+
}
61+
]
62+
}
4263
}
4364
]
4465
}

.github/workflows/ci.yml

-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ jobs:
3030
# This line is needed for nx affected to work when CI is running on a PR
3131
- run: git branch --track main origin/main || true
3232

33-
- run: npx nx workspace-lint
3433
- run: if ! npx nx format:check ; then echo "Format check failed. Please run 'npx nx format:write'."; fi
3534
- run: npx nx affected --target=lint --parallel=3
3635
- run: npx nx affected --target=test --parallel=3 --ci --code-coverage

.prettierignore

+3
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,6 @@
22

33
/dist
44
/coverage
5+
6+
/.nx/cache
7+
/.nx/workspace-data

jest.config.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { getJestProjects } from '@nx/jest';
1+
import { getJestProjectsAsync } from '@nx/jest';
22

3-
export default {
4-
projects: getJestProjects(),
5-
};
3+
export default async () => ({
4+
projects: await getJestProjectsAsync(),
5+
});
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
22
"presets": [["minify", { "builtIns": false }]]
3-
}
3+
}

libs/hooks/open-telemetry/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "@openfeature/open-telemetry-hooks",
33
"version": "0.4.0",
4+
"license": "Apache-2.0",
45
"repository": {
56
"type": "git",
67
"url": "https://github.com/open-feature/js-sdk-contrib.git",
@@ -16,6 +17,5 @@
1617
"peerDependencies": {
1718
"@openfeature/server-sdk": "^1.13.0",
1819
"@opentelemetry/api": ">=1.3.0"
19-
},
20-
"license": "Apache-2.0"
21-
}
20+
}
21+
}

libs/hooks/open-telemetry/project.json

+8-29
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@
66
"targets": {
77
"package": {
88
"executor": "@nx/rollup:rollup",
9-
"outputs": [
10-
"{options.outputPath}"
11-
],
9+
"outputs": ["{options.outputPath}"],
1210
"options": {
1311
"project": "libs/hooks/open-telemetry/package.json",
1412
"outputPath": "dist/libs/hooks/open-telemetry",
@@ -18,10 +16,7 @@
1816
"generateExportsField": true,
1917
"umdName": "OpenTelemetry",
2018
"external": "all",
21-
"format": [
22-
"cjs",
23-
"esm"
24-
],
19+
"format": ["cjs", "esm"],
2520
"assets": [
2621
{
2722
"glob": "package.json",
@@ -38,23 +33,17 @@
3833
"input": "./libs/hooks/open-telemetry",
3934
"output": "./"
4035
}
41-
],
42-
"updateBuildableProjectDepsInPackageJson": true
36+
]
4337
}
4438
},
4539
"build": {
4640
"executor": "@nx/js:tsc",
47-
"outputs": [
48-
"{options.outputPath}"
49-
],
41+
"outputs": ["{options.outputPath}"],
5042
"options": {
5143
"outputPath": "dist/libs/hooks/open-telemetry",
5244
"main": "libs/hooks/open-telemetry/src/index.ts",
5345
"tsConfig": "libs/hooks/open-telemetry/tsconfig.lib.json",
54-
"assets": [
55-
"libs/hooks/open-telemetry/*.md"
56-
],
57-
"updateBuildableProjectDepsInPackageJson": true
46+
"assets": ["libs/hooks/open-telemetry/*.md"]
5847
}
5948
},
6049
"publish": {
@@ -70,24 +59,14 @@
7059
]
7160
},
7261
"lint": {
73-
"executor": "@nx/linter:eslint",
74-
"outputs": [
75-
"{options.outputFile}"
76-
],
77-
"options": {
78-
"lintFilePatterns": [
79-
"libs/hooks/open-telemetry/**/*.ts"
80-
]
81-
}
62+
"executor": "@nx/eslint:lint",
63+
"outputs": ["{options.outputFile}"]
8264
},
8365
"test": {
8466
"executor": "@nx/jest:jest",
85-
"outputs": [
86-
"{workspaceRoot}/coverage/libs/hooks/open-telemetry"
87-
],
67+
"outputs": ["{workspaceRoot}/coverage/libs/hooks/open-telemetry"],
8868
"options": {
8969
"jestConfig": "libs/hooks/open-telemetry/jest.config.ts",
90-
"passWithNoTests": true,
9170
"codeCoverage": true,
9271
"coverageDirectory": "coverage/libs/hooks/open-telemetry"
9372
}
+3-1
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
{
22
"name": "@openfeature/config-cat-web-provider",
33
"version": "0.1.3",
4+
"license": "Apache-2.0",
45
"scripts": {
56
"publish-if-not-exists": "cp $NPM_CONFIG_USERCONFIG .npmrc && if [ \"$(npm show $npm_package_name@$npm_package_version version)\" = \"$(npm run current-version -s)\" ]; then echo 'already published, skipping'; else npm publish --access public; fi",
67
"current-version": "echo $npm_package_version"
78
},
89
"peerDependencies": {
910
"@openfeature/web-sdk": "^1.0.0",
10-
"configcat-js-ssr": "^8.4.3"
11+
"configcat-js-ssr": "^8.4.3",
12+
"@openfeature/config-cat-core": "0.1.0"
1113
}
1214
}

libs/providers/config-cat-web/project.json

+7-30
Original file line numberDiff line numberDiff line change
@@ -17,37 +17,19 @@
1717
]
1818
},
1919
"lint": {
20-
"executor": "@nx/linter:eslint",
21-
"outputs": [
22-
"{options.outputFile}"
23-
],
24-
"options": {
25-
"lintFilePatterns": [
26-
"libs/providers/config-cat-web/**/*.ts"
27-
]
28-
}
20+
"executor": "@nx/eslint:lint",
21+
"outputs": ["{options.outputFile}"]
2922
},
3023
"test": {
3124
"executor": "@nx/jest:jest",
32-
"outputs": [
33-
"{workspaceRoot}/coverage/{projectRoot}"
34-
],
25+
"outputs": ["{workspaceRoot}/coverage/{projectRoot}"],
3526
"options": {
36-
"jestConfig": "libs/providers/config-cat-web/jest.config.ts",
37-
"passWithNoTests": true
38-
},
39-
"configurations": {
40-
"ci": {
41-
"ci": true,
42-
"codeCoverage": true
43-
}
27+
"jestConfig": "libs/providers/config-cat-web/jest.config.ts"
4428
}
4529
},
4630
"package": {
4731
"executor": "@nx/rollup:rollup",
48-
"outputs": [
49-
"{options.outputPath}"
50-
],
32+
"outputs": ["{options.outputPath}"],
5133
"options": {
5234
"project": "libs/providers/config-cat-web/package.json",
5335
"outputPath": "dist/libs/providers/config-cat-web",
@@ -57,10 +39,7 @@
5739
"generateExportsField": true,
5840
"umdName": "config-cat",
5941
"external": "all",
60-
"format": [
61-
"cjs",
62-
"esm"
63-
],
42+
"format": ["cjs", "esm"],
6443
"assets": [
6544
{
6645
"glob": "package.json",
@@ -77,9 +56,7 @@
7756
"input": "./libs/providers/config-cat-web",
7857
"output": "./"
7958
}
80-
],
81-
"buildableProjectDepsInPackageJsonType": "dependencies",
82-
"updateBuildableProjectDepsInPackageJson": true
59+
]
8360
}
8461
}
8562
},

libs/providers/config-cat-web/tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"noImplicitOverride": true,
77
"noPropertyAccessFromIndexSignature": true,
88
"noImplicitReturns": true,
9-
"noFallthroughCasesInSwitch": true,
9+
"noFallthroughCasesInSwitch": true
1010
},
1111
"files": [],
1212
"include": [],
+4-1
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
{
22
"name": "@openfeature/config-cat-provider",
33
"version": "0.7.2",
4+
"license": "Apache-2.0",
45
"scripts": {
56
"publish-if-not-exists": "cp $NPM_CONFIG_USERCONFIG .npmrc && if [ \"$(npm show $npm_package_name@$npm_package_version version)\" = \"$(npm run current-version -s)\" ]; then echo 'already published, skipping'; else npm publish --access public; fi",
67
"current-version": "echo $npm_package_version"
78
},
89
"peerDependencies": {
910
"@openfeature/server-sdk": "^1.13.5",
10-
"configcat-node": "^11.3.1"
11+
"configcat-node": "^11.3.1",
12+
"@openfeature/config-cat-core": "0.1.0",
13+
"configcat-common": "9.3.1"
1114
}
1215
}

libs/providers/config-cat/project.json

+7-30
Original file line numberDiff line numberDiff line change
@@ -17,37 +17,19 @@
1717
]
1818
},
1919
"lint": {
20-
"executor": "@nx/linter:eslint",
21-
"outputs": [
22-
"{options.outputFile}"
23-
],
24-
"options": {
25-
"lintFilePatterns": [
26-
"libs/providers/config-cat/**/*.ts"
27-
]
28-
}
20+
"executor": "@nx/eslint:lint",
21+
"outputs": ["{options.outputFile}"]
2922
},
3023
"test": {
3124
"executor": "@nx/jest:jest",
32-
"outputs": [
33-
"{workspaceRoot}/coverage/{projectRoot}"
34-
],
25+
"outputs": ["{workspaceRoot}/coverage/{projectRoot}"],
3526
"options": {
36-
"jestConfig": "libs/providers/config-cat/jest.config.ts",
37-
"passWithNoTests": true
38-
},
39-
"configurations": {
40-
"ci": {
41-
"ci": true,
42-
"codeCoverage": true
43-
}
27+
"jestConfig": "libs/providers/config-cat/jest.config.ts"
4428
}
4529
},
4630
"package": {
4731
"executor": "@nx/rollup:rollup",
48-
"outputs": [
49-
"{options.outputPath}"
50-
],
32+
"outputs": ["{options.outputPath}"],
5133
"options": {
5234
"project": "libs/providers/config-cat/package.json",
5335
"outputPath": "dist/libs/providers/config-cat",
@@ -57,10 +39,7 @@
5739
"generateExportsField": true,
5840
"umdName": "config-cat",
5941
"external": "all",
60-
"format": [
61-
"cjs",
62-
"esm"
63-
],
42+
"format": ["cjs", "esm"],
6443
"assets": [
6544
{
6645
"glob": "package.json",
@@ -77,9 +56,7 @@
7756
"input": "./libs/providers/config-cat",
7857
"output": "./"
7958
}
80-
],
81-
"buildableProjectDepsInPackageJsonType": "dependencies",
82-
"updateBuildableProjectDepsInPackageJson": true
59+
]
8360
}
8461
}
8562
},

libs/providers/config-cat/tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"noImplicitOverride": true,
77
"noPropertyAccessFromIndexSignature": true,
88
"noImplicitReturns": true,
9-
"noFallthroughCasesInSwitch": true,
9+
"noFallthroughCasesInSwitch": true
1010
},
1111
"files": [],
1212
"include": [],

libs/providers/env-var/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
{
22
"name": "@openfeature/env-var-provider",
33
"version": "0.3.1",
4+
"license": "Apache-2.0",
45
"scripts": {
56
"publish-if-not-exists": "cp $NPM_CONFIG_USERCONFIG .npmrc && if [ \"$(npm show $npm_package_name@$npm_package_version version)\" = \"$(npm run current-version -s)\" ]; then echo 'already published, skipping'; else npm publish --access public; fi",
67
"current-version": "echo $npm_package_version"
78
},
89
"peerDependencies": {
910
"@openfeature/server-sdk": "^1.13.0"
1011
}
11-
}
12+
}

0 commit comments

Comments
 (0)