File tree 3 files changed +25
-10
lines changed
3 files changed +25
-10
lines changed Original file line number Diff line number Diff line change 31
31
- run : git branch --track main origin/main || true
32
32
33
33
- run : if ! npx nx format:check ; then echo "Format check failed. Please run 'npx nx format:write'."; fi
34
- - run : npx nx affected --target=lint --parallel=3
35
- - run : npx nx affected --target=test --parallel=3 --ci --code-coverage
36
- - run : npx nx affected --target=build --parallel=3
34
+ - run : npx nx affected --target=lint --parallel=3 --exclude=js-sdk-contrib
35
+ - run : npx nx affected --target=test --parallel=3 --ci --code-coverage --exclude=js-sdk-contrib
36
+ - run : npx nx affected --target=build --parallel=3 --exclude=js-sdk-contrib
37
37
38
38
e2e :
39
39
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 5
5
"scripts" : {
6
6
"generate-hook" : " nx generate open-feature hook" ,
7
7
"generate-provider" : " nx generate open-feature provider" ,
8
- "test" : " nx run-many --all --target=test --skip-nx-cache" ,
9
- "e2e" : " nx run-many --all --target=e2e --skip-nx-cache --output-style=stream --parallel=false" ,
10
- "lint" : " nx run-many --all --target=lint --skip-nx-cache" ,
11
- "lint:fix" : " nx run-many --all --target=lint --skip-nx-cache --fix" ,
12
- "package" : " npx nx run-many --all --target=package" ,
13
- "publish" : " npx nx run-many --all --target=publish"
8
+ "test" : " nx run-many --all --target=test --skip-nx-cache --exclude=js-sdk-contrib " ,
9
+ "e2e" : " nx run-many --all --target=e2e --skip-nx-cache --output-style=stream --parallel=false --exclude=js-sdk-contrib " ,
10
+ "lint" : " nx run-many --all --target=lint --skip-nx-cache --exclude=js-sdk-contrib " ,
11
+ "lint:fix" : " nx run-many --all --target=lint --skip-nx-cache --fix --exclude=js-sdk-contrib " ,
12
+ "package" : " npx nx run-many --all --target=package --exclude=js-sdk-contrib " ,
13
+ "publish" : " npx nx run-many --all --target=publish --exclude=js-sdk-contrib "
14
14
},
15
15
"private" : true ,
16
16
"dependencies" : {
90
90
"ts-jest" : " 29.2.5" ,
91
91
"ts-node" : " 10.9.2" ,
92
92
"typescript" : " 5.7.3" ,
93
- "undici" : " ^5.0.0"
93
+ "undici" : " ^5.0.0" ,
94
+ "verdaccio" : " ^5.0.4"
94
95
}
95
96
}
Original file line number Diff line number Diff line change
1
+ {
2
+ "name" : " js-sdk-contrib" ,
3
+ "$schema" : " node_modules/nx/schemas/project-schema.json" ,
4
+ "targets" : {
5
+ "local-registry" : {
6
+ "executor" : " @nx/js:verdaccio" ,
7
+ "options" : {
8
+ "port" : 4873 ,
9
+ "config" : " .verdaccio/config.yml" ,
10
+ "storage" : " tmp/local-registry/storage"
11
+ }
12
+ }
13
+ }
14
+ }
You can’t perform that action at this time.
0 commit comments