Skip to content

Commit 1cd194d

Browse files
committed
fix(microbundle): update to latest version and remove umd support
1 parent 8cff124 commit 1cd194d

1 file changed

Lines changed: 18 additions & 18 deletions

File tree

package.json

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,13 @@
1111
},
1212
"homepage": "https://github.com/frontity/mobx-react-wrapper#readme",
1313
"main": "dist/mobx-react-wrapper.js",
14-
"umd:main": "dist/mobx-react-wrapper.umd.js",
1514
"module": "dist/mobx-react-wrapper.m.js",
1615
"source": "src/index.js",
1716
"license": "Apache-2.0",
1817
"scripts": {
1918
"example": "parcel ./example/index.html --out-dir exampleDist",
20-
"build": "microbundle -o dist/ --sourcemap false",
21-
"dev": "microbundle watch -o dist/ --sourcemap false --compress false",
19+
"build": "rimraf dist && microbundle -o dist/ --sourcemap false -f es,cjs",
20+
"dev": "rimraf dist && microbundle watch -o dist/ --compress false --sourcemap false -f es,cjs",
2221
"test": "jest --watch",
2322
"test:ci": "jest --coverage",
2423
"cz": "git-cz",
@@ -38,36 +37,37 @@
3837
"@babel/polyfill": "^7.2.5",
3938
"@babel/preset-env": "^7.2.3",
4039
"@babel/preset-react": "^7.0.0",
40+
"@commitlint/cli": "^7.3.1",
41+
"@commitlint/config-conventional": "^7.3.1",
42+
"@semantic-release/changelog": "^3.0.2",
43+
"@semantic-release/exec": "^3.3.2",
44+
"@semantic-release/git": "^7.0.7",
45+
"@semantic-release/github": "^5.2.9",
46+
"@semantic-release/npm": "^5.1.3",
4147
"babel-core": "^7.0.0-bridge.0",
4248
"babel-eslint": "^10.0.1",
4349
"babel-jest": "^23.6.0",
50+
"commitizen": "^3.0.5",
4451
"coveralls": "^3.0.2",
52+
"cz-conventional-changelog": "^2.1.0",
4553
"eslint": "^5.7.0",
4654
"eslint-config-airbnb": "^17.1.0",
4755
"eslint-plugin-import": "^2.14.0",
4856
"eslint-plugin-jsx-a11y": "^6.1.2",
4957
"eslint-plugin-react": "^7.11.1",
58+
"husky": "^1.3.1",
5059
"jest": "^23.6.0",
5160
"jest-dom": "^3.0.0",
52-
"microbundle": "^0.6.0",
53-
"mobx": "5.0.0",
54-
"mobx-state-tree": "3.0.0",
61+
"lint-staged": "^8.1.0",
62+
"microbundle": "^0.9.0",
63+
"mobx": "^5.0.0",
64+
"mobx-state-tree": "^3.0.0",
5565
"parcel-bundler": "^1.10.3",
66+
"prettier": "^1.15.3",
5667
"react": "16.8.0-alpha.0",
5768
"react-dom": "16.8.0-alpha.0",
5869
"react-testing-library": "^5.4.2",
59-
"@commitlint/cli": "^7.3.1",
60-
"@commitlint/config-conventional": "^7.3.1",
61-
"@semantic-release/changelog": "^3.0.2",
62-
"@semantic-release/exec": "^3.3.2",
63-
"@semantic-release/git": "^7.0.7",
64-
"@semantic-release/github": "^5.2.9",
65-
"@semantic-release/npm": "^5.1.3",
66-
"commitizen": "^3.0.5",
67-
"cz-conventional-changelog": "^2.1.0",
68-
"husky": "^1.3.1",
69-
"lint-staged": "^8.1.0",
70-
"prettier": "^1.15.3",
70+
"rimraf": "^2.6.3",
7171
"semantic-release": "^15.13.3"
7272
},
7373
"peerDependencies": {

0 commit comments

Comments
 (0)