Skip to content

Commit 64342e8

Browse files
committed
[all] fix install all
1 parent 5e0e960 commit 64342e8

File tree

16 files changed

+67
-25
lines changed

16 files changed

+67
-25
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ jobs:
1515
node-version: '22.x'
1616

1717
- name: Dependencies
18-
run: |
19-
npm install
20-
npm run bootstrap
18+
run: npm install
19+
- name: Bootstrap
20+
run: npm run bootstrap
2121

2222
- name: Build
2323
run: npm run build

libs/almalinux-9-v85/project.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
33
"sourceRoot": "libs/almalinux-9-v85",
44
"projectType": "library",
55
"targets": {
6+
"install": {
7+
"executor": "nx:run-commands",
8+
"options": {
9+
"command": "npm install",
10+
"cwd": "libs/almalinux-9-v85"
11+
}
12+
},
613
"build": {
714
"executor": "nx:run-commands",
815
"options": {

libs/almalinux-9-v85/tsconfig.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,8 @@
1717
"noUnusedLocals": true,
1818
"noUnusedParameters": true,
1919
"forceConsistentCasingInFileNames": true,
20-
"typeRoots": [
21-
"./node_modules/@types"
22-
]
20+
"types": ["node"],
21+
"skipLibCheck": true
2322
},
2423
"include": [
2524
"src/**/*.ts"

libs/amazon-linux-2-v74/project.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
33
"sourceRoot": "libs/amazon-linux-2-v74",
44
"projectType": "library",
55
"targets": {
6+
"install": {
7+
"executor": "nx:run-commands",
8+
"options": {
9+
"command": "npm install",
10+
"cwd": "libs/amazon-linux-2-v74"
11+
}
12+
},
613
"build": {
714
"executor": "nx:run-commands",
815
"options": {

libs/amazon-linux-2-v74/tsconfig.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,8 @@
1717
"noUnusedLocals": true,
1818
"noUnusedParameters": true,
1919
"forceConsistentCasingInFileNames": true,
20-
"typeRoots": [
21-
"./node_modules/@types"
22-
]
20+
"types": ["node"],
21+
"skipLibCheck": true
2322
},
2423
"include": [
2524
"src/**/*.ts"

libs/amazon-linux-2-v80/project.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
33
"sourceRoot": "libs/amazon-linux-2-v80",
44
"projectType": "library",
55
"targets": {
6+
"install": {
7+
"executor": "nx:run-commands",
8+
"options": {
9+
"command": "npm install",
10+
"cwd": "libs/amazon-linux-2-v80"
11+
}
12+
},
613
"build": {
714
"executor": "nx:run-commands",
815
"options": {

libs/amazon-linux-2-v80/tsconfig.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,8 @@
1717
"noUnusedLocals": true,
1818
"noUnusedParameters": true,
1919
"forceConsistentCasingInFileNames": true,
20-
"typeRoots": [
21-
"./node_modules/@types"
22-
]
20+
"types": ["node"],
21+
"skipLibCheck": true
2322
},
2423
"include": [
2524
"src/**/*.ts"

libs/amazon-linux-2-v81/project.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
33
"sourceRoot": "libs/amazon-linux-2-v81",
44
"projectType": "library",
55
"targets": {
6+
"install": {
7+
"executor": "nx:run-commands",
8+
"options": {
9+
"command": "npm install",
10+
"cwd": "libs/amazon-linux-2-v81"
11+
}
12+
},
613
"build": {
714
"executor": "nx:run-commands",
815
"options": {

libs/amazon-linux-2-v81/tsconfig.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,8 @@
1717
"noUnusedLocals": true,
1818
"noUnusedParameters": true,
1919
"forceConsistentCasingInFileNames": true,
20-
"typeRoots": [
21-
"./node_modules/@types"
22-
]
20+
"types": ["node"],
21+
"skipLibCheck": true
2322
},
2423
"include": [
2524
"src/**/*.ts"

libs/amazon-linux-2-v82/project.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
33
"sourceRoot": "libs/amazon-linux-2-v82",
44
"projectType": "library",
55
"targets": {
6+
"install": {
7+
"executor": "nx:run-commands",
8+
"options": {
9+
"command": "npm install",
10+
"cwd": "libs/amazon-linux-2-v82"
11+
}
12+
},
613
"build": {
714
"executor": "nx:run-commands",
815
"options": {

0 commit comments

Comments
 (0)