File tree 6 files changed +291
-641
lines changed
6 files changed +291
-641
lines changed Original file line number Diff line number Diff line change
1
+ const baseProjectConfig = {
2
+ transform : {
3
+ "^.+\\.(ts|tsx)$" : "ts-jest" ,
4
+ } ,
5
+ moduleFileExtensions : [ "ts" , "tsx" , "js" ] ,
6
+ testRegex : "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$" ,
7
+ } ;
8
+
9
+ module . exports = {
10
+ projects : [
11
+ {
12
+ ...baseProjectConfig ,
13
+ displayName : "core" ,
14
+ rootDir : "<rootDir>/packages/gitgraph-core/" ,
15
+ } ,
16
+ {
17
+ ...baseProjectConfig ,
18
+ displayName : "node" ,
19
+ rootDir : "<rootDir>/packages/gitgraph-node/" ,
20
+ } ,
21
+ {
22
+ ...baseProjectConfig ,
23
+ displayName : "react" ,
24
+ rootDir : "<rootDir>/packages/gitgraph-react/" ,
25
+ } ,
26
+ ] ,
27
+ } ;
Original file line number Diff line number Diff line change 24
24
"build" : " lerna run build" ,
25
25
"watch" : " lerna run watch" ,
26
26
"pretest" : " npm run build" ,
27
- "test" : " lerna run test " ,
27
+ "test" : " jest " ,
28
28
"clean" : " lerna clean"
29
29
},
30
30
"devDependencies" : {
31
+ "@types/jest" : " 23.1.4" ,
31
32
"husky" : " 1.0.0-rc.12" ,
33
+ "jest" : " 23.3.0" ,
32
34
"lerna" : " ^2.5.1" ,
33
35
"prettier" : " 1.13.7" ,
34
- "pretty-quick" : " 1.6.0"
36
+ "pretty-quick" : " 1.6.0" ,
37
+ "ts-jest" : " 23.0.0" ,
38
+ "typescript" : " 2.9.2"
35
39
},
36
40
"workspaces" : [
37
41
" packages/*"
Original file line number Diff line number Diff line change 28
28
"jsnext:main" : " ./lib/index.js" ,
29
29
"typings" : " ./lib/index.d.ts" ,
30
30
"scripts" : {
31
- "test" : " jest" ,
32
- "test:watch" : " jest --watch" ,
33
31
"watch" : " tsc -w" ,
34
32
"build" : " run-s build:*" ,
35
33
"build:clear" : " rimraf ./lib" ,
44
42
"lodash" : " 4.17.10"
45
43
},
46
44
"devDependencies" : {
47
- "@types/jest" : " ^21.1.8" ,
48
45
"@types/joi" : " ^13.4.0" ,
49
46
"@types/lodash" : " ^4.14.116" ,
50
47
"@types/node" : " ^9.4.6" ,
51
48
"browserify" : " ^14.5.0" ,
52
- "jest" : " ^21.2.1" ,
53
49
"npm-run-all" : " ^4.1.2" ,
54
50
"rimraf" : " ^2.6.2" ,
55
51
"rollup" : " ^0.51.8" ,
56
- "ts-jest" : " ^21.2.3" ,
57
52
"tslint" : " ^5.9.1" ,
58
53
"tslint-config-prettier" : " ^1.12.0" ,
59
54
"typescript" : " ^2.8.1" ,
60
55
"uglify-es" : " ^3.3.9"
61
56
},
62
- "jest" : {
63
- "transform" : {
64
- ".(ts)" : " <rootDir>/../../node_modules/ts-jest/preprocessor.js"
65
- },
66
- "testRegex" : " (/__tests__/.*|\\ .(test|spec))\\ .(ts|tsx|js)$" ,
67
- "moduleFileExtensions" : [
68
- " ts" ,
69
- " js" ,
70
- " json"
71
- ]
72
- },
73
57
"browser" : {
74
58
"joi" : " joi-browser"
75
59
}
Original file line number Diff line number Diff line change 28
28
"scripts" : {
29
29
"lint" : " tslint src/**/*" ,
30
30
"lint:fix" : " npm run lint -- --fix" ,
31
- "test" : " jest" ,
32
- "test:watch" : " jest --watch" ,
33
31
"example:default" : " ts-node examples/default.ts" ,
34
32
"example:branches" : " ts-node examples/branches.ts"
35
33
},
39
37
"lodash" : " ^4.17.10"
40
38
},
41
39
"devDependencies" : {
42
- "@types/jest" : " ^23.1.1" ,
43
40
"@types/lodash" : " ^4.14.110" ,
44
41
"@types/node" : " ^9.4.6" ,
45
- "jest" : " ^23.1.0" ,
46
- "ts-jest" : " ^21.2.3" ,
47
42
"ts-node" : " ^6.1.1" ,
48
43
"tslint" : " ^5.9.1" ,
49
44
"tslint-config-prettier" : " 1.13.0" ,
50
45
"typescript" : " ^2.8.1"
51
- },
52
- "jest" : {
53
- "transform" : {
54
- "^.+\\ .tsx?$" : " ts-jest"
55
- },
56
- "testRegex" : " (/__tests__/.*|(\\ .|/)(test|spec))\\ .tsx?$" ,
57
- "moduleFileExtensions" : [
58
- " ts" ,
59
- " tsx" ,
60
- " js" ,
61
- " jsx" ,
62
- " json"
63
- ]
64
46
}
65
47
}
Original file line number Diff line number Diff line change 30
30
"typings" : " ./lib/index.d.ts" ,
31
31
"scripts" : {
32
32
"lint" : " tslint --fix src/**/*" ,
33
- "test" : " jest" ,
34
- "test:watch" : " jest --watch" ,
35
33
"watch" : " tsc -w" ,
36
34
"build" : " run-s build:*" ,
37
35
"build:clear" : " rimraf ./lib" ,
52
50
"@storybook/addon-knobs" : " ^3.3.15" ,
53
51
"@storybook/addons" : " ^3.3.15" ,
54
52
"@storybook/react" : " ^3.3.15" ,
55
- "@types/jest" : " ^21.1.8" ,
56
53
"@types/node" : " ^9.4.6" ,
57
54
"@types/react" : " ^16.0.40" ,
58
55
"@types/react-dom" : " ^16.0.4" ,
61
58
"@types/storybook__react" : " ^3.0.7" ,
62
59
"babel-core" : " ^6.26.0" ,
63
60
"browserify" : " ^14.5.0" ,
64
- "jest" : " ^21.2.1" ,
65
61
"npm-run-all" : " ^4.1.2" ,
66
62
"rimraf" : " ^2.6.2" ,
67
63
"rollup" : " ^0.51.8" ,
68
- "ts-jest" : " ^21.2.3" ,
69
64
"ts-loader" : " 3.5.0" ,
70
65
"tslint" : " ^5.9.1" ,
71
66
"tslint-config-prettier" : " 1.13.0" ,
72
67
"typescript" : " ^2.8.1" ,
73
68
"uglify-es" : " ^3.3.9"
74
- },
75
- "jest" : {
76
- "transform" : {
77
- ".(ts)" : " <rootDir>/../../node_modules/ts-jest/preprocessor.js"
78
- },
79
- "testRegex" : " (/__tests__/.*|\\ .(test|spec))\\ .(ts|tsx|js)$" ,
80
- "moduleFileExtensions" : [
81
- " ts" ,
82
- " js" ,
83
- " json"
84
- ]
85
69
}
86
70
}
You can’t perform that action at this time.
0 commit comments