|
6 | 6 | "license": "Apache-2.0", |
7 | 7 | "scripts": { |
8 | 8 | "start": "lerna run build:i18n && start-storybook -p 6006 -c .storybook", |
9 | | - "build": "yarn clean && lerna run build --stream && node ./scripts/rollup/build.js", |
| 9 | + "build": "npm-run-all -s build:clean build:esm build:cjs", |
| 10 | + "build:clean": "yarn clean", |
| 11 | + "build:esm": "lerna run build --stream", |
| 12 | + "build:cjs": "node ./scripts/rollup/build.js", |
10 | 13 | "build:storybook": "lerna run build:i18n && build-storybook -c .storybook -o .out", |
11 | 14 | "pretest": "rimraf coverage && lerna run build:i18n", |
12 | 15 | "test": "jest --config=config/jest.config.js --coverage", |
|
32 | 35 | }, |
33 | 36 | "devDependencies": { |
34 | 37 | "@babel/core": "^7.9.6", |
| 38 | + "@babel/plugin-proposal-class-properties": "^7.8.3", |
| 39 | + "@babel/plugin-proposal-decorators": "^7.8.3", |
35 | 40 | "@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.0", |
| 41 | + "@babel/plugin-proposal-numeric-separator": "^7.8.3", |
36 | 42 | "@babel/plugin-proposal-optional-chaining": "^7.9.0", |
| 43 | + "@babel/plugin-transform-runtime": "^7.9.6", |
| 44 | + "@babel/preset-env": "^7.9.6", |
| 45 | + "@babel/preset-react": "^7.9.4", |
| 46 | + "@babel/preset-typescript": "^7.9.0", |
37 | 47 | "@rollup/plugin-babel": "^5.0.0", |
38 | 48 | "@rollup/plugin-commonjs": "^11.1.0", |
39 | 49 | "@rollup/plugin-json": "^4.0.3", |
|
50 | 60 | "@typescript-eslint/parser": "^2.31.0", |
51 | 61 | "@ui5/webcomponents-tools": "^1.0.0-rc.6", |
52 | 62 | "babel-code-frame": "^6.26.0", |
| 63 | + "babel-jest": "^26.0.1", |
53 | 64 | "babel-loader": "^8.1.0", |
54 | | - "babel-preset-react-app": "^9.1.2", |
55 | 65 | "chalk": "^4.0.0", |
56 | 66 | "dedent": "^0.7.0", |
57 | 67 | "dotenv": "^8.2.0", |
|
67 | 77 | "google-closure-compiler": "^20200406.0.0", |
68 | 78 | "husky": "^4.2.5", |
69 | 79 | "identity-obj-proxy": "^3.0.0", |
70 | | - "jest": "^25.5.4", |
| 80 | + "jest": "^26.0.1", |
71 | 81 | "jest-canvas-mock": "^2.2.0", |
72 | 82 | "jest-environment-jsdom-sixteen": "^1.0.2", |
73 | 83 | "jest-enzyme": "^7.1.2", |
|
93 | 103 | "typescript": "^3.8.3" |
94 | 104 | }, |
95 | 105 | "resolutions": { |
96 | | - "@types/react": "16.9.34" |
| 106 | + "@types/react": "16.9.34", |
| 107 | + "@babel/runtime": "7.9.6" |
97 | 108 | }, |
98 | 109 | "husky": { |
99 | 110 | "hooks": { |
|
0 commit comments