Skip to content

Commit f509d3d

Browse files
committed
New Version
1 parent e05d103 commit f509d3d

File tree

4 files changed

+1242
-25
lines changed

4 files changed

+1242
-25
lines changed

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
"packages": ["packages/*"],
33
"useWorkspaces": true,
44
"npmClient": "yarn",
5-
"version": "0.0.6"
5+
"version": "0.0.7"
66
}

packages/react-library-scripts/package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-dependency-scripts",
3-
"version": "0.0.6",
3+
"version": "0.0.7",
44
"description": "Scripts of react libraries",
55
"main": "index.js",
66
"author": "André Lins",
@@ -19,9 +19,11 @@
1919
"@babel/plugin-transform-runtime": "^7.6.2",
2020
"@babel/preset-env": "^7.6.3",
2121
"@babel/preset-react": "^7.6.3",
22+
"babel-jest": "^24.9.0",
2223
"babel-plugin-module-resolver": "^3.2.0",
2324
"babel-preset-react-app": "^9.0.2",
2425
"html-webpack-plugin": "^3.2.0",
26+
"jest": "^24.9.0",
2527
"open": "^7.0.0",
2628
"webpack": "^4.41.2",
2729
"webpack-dev-server": "^3.9.0"

packages/react-library-scripts/scripts/test.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ if (packageJson.jest) {
1818
jestConfig = { ...jestConfig, ...packageJson.jest };
1919
}
2020

21+
const args = process.argv.slice(2);
2122
args.unshift("--ci");
2223
args.unshift("--config", JSON.stringify(jestConfig));
2324

24-
jest.run(process.argv.slice(2));
25+
jest.run(args);

0 commit comments

Comments
 (0)