Skip to content

Commit 863d333

Browse files
upgrade nx dependencies. NOTE: talent-pool is erroring - to be fixed
1 parent ad5445b commit 863d333

File tree

26 files changed

+3231
-3136
lines changed

26 files changed

+3231
-3136
lines changed

apps/admin-panel/tsconfig.app.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
"../../node_modules/@nrwl/react/typings/cssmodule.d.ts",
99
"../../node_modules/@nrwl/react/typings/image.d.ts"
1010
],
11-
"exclude": ["**/*.spec.ts", "**/*.spec.tsx"],
11+
"exclude": ["**/*.spec.ts", "**/*.test.ts", "**/*.spec.tsx", "**/*.test.tsx"],
1212
"include": ["**/*.js", "**/*.jsx", "**/*.ts", "**/*.tsx"]
1313
}

apps/admin-panel/tsconfig.spec.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,13 @@
77
},
88
"include": [
99
"**/*.spec.ts",
10+
"**/*.test.ts",
1011
"**/*.spec.tsx",
12+
"**/*.test.tsx",
1113
"**/*.spec.js",
14+
"**/*.test.js",
1215
"**/*.spec.jsx",
16+
"**/*.test.jsx",
1317
"**/*.d.ts"
1418
],
1519
"files": [

apps/redi-connect/tsconfig.app.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
"../../node_modules/@nrwl/react/typings/cssmodule.d.ts",
99
"../../node_modules/@nrwl/react/typings/image.d.ts"
1010
],
11-
"exclude": ["**/*.spec.ts", "**/*.spec.tsx"],
11+
"exclude": ["**/*.spec.ts", "**/*.test.ts", "**/*.spec.tsx", "**/*.test.tsx"],
1212
"include": ["**/*.js", "**/*.jsx", "**/*.ts", "**/*.tsx"]
1313
}

apps/redi-connect/tsconfig.spec.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,13 @@
77
},
88
"include": [
99
"**/*.spec.ts",
10+
"**/*.test.ts",
1011
"**/*.spec.tsx",
12+
"**/*.test.tsx",
1113
"**/*.spec.js",
14+
"**/*.test.js",
1215
"**/*.spec.jsx",
16+
"**/*.test.jsx",
1317
"**/*.d.ts"
1418
],
1519
"files": [

apps/redi-talent-pool/tsconfig.app.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
"../../node_modules/@nrwl/react/typings/cssmodule.d.ts",
99
"../../node_modules/@nrwl/react/typings/image.d.ts"
1010
],
11-
"exclude": ["**/*.spec.ts", "**/*.spec.tsx"],
11+
"exclude": ["**/*.spec.ts", "**/*.test.ts", "**/*.spec.tsx", "**/*.test.tsx"],
1212
"include": ["**/*.js", "**/*.jsx", "**/*.ts", "**/*.tsx"]
1313
}

apps/redi-talent-pool/tsconfig.spec.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,13 @@
77
},
88
"include": [
99
"**/*.spec.ts",
10+
"**/*.test.ts",
1011
"**/*.spec.tsx",
12+
"**/*.test.tsx",
1113
"**/*.spec.js",
14+
"**/*.test.js",
1215
"**/*.spec.jsx",
16+
"**/*.test.jsx",
1317
"**/*.d.ts"
1418
],
1519
"files": [

jest.config.js

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,3 @@
1-
module.exports = {
2-
projects: [
3-
'<rootDir>/apps/redi-connect',
4-
'<rootDir>/apps/admin-panel',
5-
'<rootDir>/libs/shared-atomic-design-components',
6-
'<rootDir>/apps/redi-talent-pool',
7-
'<rootDir>/libs/shared-config',
8-
'<rootDir>/libs/talent-pool/types',
9-
'<rootDir>/libs/talent-pool/config',
10-
'<rootDir>/libs/shared-utils',
11-
'<rootDir>/libs/typescript-utilities',
12-
'<rootDir>/apps/nestjs-api',
13-
],
14-
}
1+
const { getJestProjects } = require('@nrwl/jest')
2+
3+
module.exports = { projects: getJestProjects() }

libs/shared-atomic-design-components/.storybook/main.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@ const rootMain = require('../../../.storybook/main')
55
rootMain.stories.push(
66
...['../src/lib/**/*.stories.mdx', '../src/lib/**/*.stories.@(js|jsx|ts|tsx)']
77
)
8+
rootMain.core = { ...rootMain.core, builder: 'webpack5' }
89

910
module.exports = rootMain

libs/shared-atomic-design-components/.storybook/tsconfig.json

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,18 @@
66
},
77
"exclude": [
88
"../**/*.spec.ts",
9+
"../**/*.test.ts",
910
"../**/*.spec.js",
11+
"../**/*.test.js",
1012
"../**/*.spec.tsx",
11-
"../**/*.spec.jsx"
13+
"../**/*.test.tsx",
14+
"../**/*.spec.jsx",
15+
"../**/*.test.jsx"
1216
],
13-
"include": ["../src/**/*", "*.js"]
17+
"include": ["../src/**/*", "*.js"],
18+
"files": [
19+
"../../../node_modules/@nrwl/react/typings/cssmodule.d.ts",
20+
"../../../node_modules/@nrwl/react/typings/image.d.ts",
21+
"../../../node_modules/@nrwl/react/typings/styled-jsx.d.ts"
22+
]
1423
}

libs/shared-atomic-design-components/tsconfig.lib.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@
1010
],
1111
"exclude": [
1212
"**/*.spec.ts",
13+
"**/*.test.ts",
1314
"**/*.spec.tsx",
15+
"**/*.test.tsx",
1416
"**/*.stories.ts",
1517
"**/*.stories.js",
1618
"**/*.stories.jsx",

0 commit comments

Comments
 (0)