Skip to content

Commit 2fdc89a

Browse files
committed
fixup: new packages
Signed-off-by: Todd Baert <[email protected]>
1 parent 80036ec commit 2fdc89a

File tree

8 files changed

+3019
-2950
lines changed

8 files changed

+3019
-2950
lines changed

libs/providers/growthbook/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "@openfeature/growthbook-provider",
33
"version": "0.1.1",
4+
"license": "Apache-2.0",
45
"dependencies": {
56
"tslib": "^2.3.0"
67
},

libs/providers/growthbook/project.json

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -12,31 +12,30 @@
1212
},
1313
"dependsOn": [
1414
{
15-
"projects": "self",
1615
"target": "package"
1716
}
1817
]
1918
},
2019
"lint": {
21-
"executor": "@nx/linter:eslint",
20+
"executor": "@nx/eslint:lint",
2221
"outputs": ["{options.outputFile}"],
23-
"options": {
24-
"lintFilePatterns": ["libs/providers/growthbook/**/*.ts", "libs/providers/growthbook/package.json"]
25-
}
22+
"dependsOn": [
23+
{
24+
"target": "generate"
25+
}
26+
]
2627
},
2728
"test": {
2829
"executor": "@nx/jest:jest",
29-
"outputs": ["{workspaceRoot}/coverage/{projectRoot}"],
30+
"outputs": ["{workspaceRoot}/coverage/libs/providers/growthbook"],
3031
"options": {
31-
"jestConfig": "libs/providers/growthbook/jest.config.ts",
32-
"passWithNoTests": true
32+
"jestConfig": "libs/providers/growthbook/jest.config.ts"
3333
},
34-
"configurations": {
35-
"ci": {
36-
"ci": true,
37-
"codeCoverage": true
34+
"dependsOn": [
35+
{
36+
"target": "generate"
3837
}
39-
}
38+
]
4039
},
4140
"package": {
4241
"executor": "@nx/rollup:rollup",

libs/providers/unleash-web/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "@openfeature/unleash-web-provider",
33
"version": "0.1.0",
4+
"license": "Apache-2.0",
45
"main": "./src/index.js",
56
"typings": "./src/index.d.ts",
67
"scripts": {

libs/providers/unleash-web/project.json

Lines changed: 12 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -12,31 +12,30 @@
1212
},
1313
"dependsOn": [
1414
{
15-
"projects": "self",
1615
"target": "package"
1716
}
1817
]
1918
},
2019
"lint": {
21-
"executor": "@nx/linter:eslint",
20+
"executor": "@nx/eslint:lint",
2221
"outputs": ["{options.outputFile}"],
23-
"options": {
24-
"lintFilePatterns": ["libs/providers/unleash-web/**/*.ts", "libs/providers/unleash-web/package.json"]
25-
}
22+
"dependsOn": [
23+
{
24+
"target": "generate"
25+
}
26+
]
2627
},
2728
"test": {
2829
"executor": "@nx/jest:jest",
29-
"outputs": ["{workspaceRoot}/coverage/{projectRoot}"],
30+
"outputs": ["{workspaceRoot}/coverage/libs/providers/unleash-web"],
3031
"options": {
31-
"jestConfig": "libs/providers/unleash-web/jest.config.ts",
32-
"passWithNoTests": true
32+
"jestConfig": "libs/providers/unleash-web/jest.config.ts"
3333
},
34-
"configurations": {
35-
"ci": {
36-
"ci": true,
37-
"codeCoverage": true
34+
"dependsOn": [
35+
{
36+
"target": "generate"
3837
}
39-
}
38+
]
4039
},
4140
"package": {
4241
"executor": "@nx/rollup:rollup",
@@ -46,8 +45,6 @@
4645
"outputPath": "dist/libs/providers/unleash-web",
4746
"entryFile": "libs/providers/unleash-web/src/index.ts",
4847
"tsConfig": "libs/providers/unleash-web/tsconfig.lib.json",
49-
"buildableProjectDepsInPackageJsonType": "dependencies",
50-
"updateBuildableProjectDepsInPackageJson": true,
5148
"compiler": "tsc",
5249
"generateExportsField": true,
5350
"umdName": "unleash-web",

libs/providers/unleash-web/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"noFallthroughCasesInSwitch": true,
1111
"resolveJsonModule": true,
1212
"esModuleInterop": true,
13-
"allowSyntheticDefaultImports": true,
13+
"allowSyntheticDefaultImports": true
1414
},
1515
"files": [],
1616
"include": [],

0 commit comments

Comments
 (0)