Skip to content

Commit 3f12b9f

Browse files
Version Packages (#734)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 0527862 commit 3f12b9f

File tree

9 files changed

+174
-177
lines changed

9 files changed

+174
-177
lines changed

.changeset/chilled-paws-confess.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/hip-papayas-pretend.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/lucky-insects-shop.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/quick-lies-buy.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/silent-pans-agree.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/tall-paws-end.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/tame-singers-grin.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# microbundle
2+
3+
## 0.12.4
4+
### Patch Changes
5+
6+
7+
8+
- [`ffcc9d9`](https://github.com/developit/microbundle/commit/ffcc9d9b7d9518ae2fa31b2af4d1fd4f98599560) [#713](https://github.com/developit/microbundle/pull/713) Thanks [@developit](https://github.com/developit)! - Support [extending a UMD global](https://rollupjs.org/guide/en/#outputextend) by prefixing the package.json `"amdName"` field (eg: `"global.xyz"`).
9+
10+
11+
12+
- [`0527862`](https://github.com/developit/microbundle/commit/052786223edce8258c73a72a49238e41e5b24850) [#722](https://github.com/developit/microbundle/pull/722) Thanks [@developit](https://github.com/developit)! - Support "esm" (`-f esm`) as an alias of "es" format.
13+
14+
15+
16+
- [`d08f977`](https://github.com/developit/microbundle/commit/d08f977aa6b19b267cf8d12861cc5cc34380d025) [#702](https://github.com/developit/microbundle/pull/702) Thanks [@wardpeet](https://github.com/wardpeet)! - Use @babel/preset-env with bugfixes instead of preset-modules to enable "Optional chaining" & "nullish coalescing" by default.
17+
18+
19+
20+
- [`d33a7ba`](https://github.com/developit/microbundle/commit/d33a7ba2f5475e870d1a0f659b0c3ec0c459a850) [#731](https://github.com/developit/microbundle/pull/731) Thanks [@vaneenige](https://github.com/vaneenige)! - Add jsxImportSource flag for new JSX runtime
21+
22+
23+
24+
- [`0fec414`](https://github.com/developit/microbundle/commit/0fec41493c39669270ba2b58401dc591e551d96d) [#716](https://github.com/developit/microbundle/pull/716) Thanks [@wardpeet](https://github.com/wardpeet)! - Don't transpile generators and async for Node
25+
26+
27+
28+
- [`ba1c047`](https://github.com/developit/microbundle/commit/ba1c047512356e0e48911f5f037be798c5c2b9eb) [#701](https://github.com/developit/microbundle/pull/701) Thanks [@wardpeet](https://github.com/wardpeet)! - re-enable unpkg alias for umd bundles as described in the readme
29+
30+
31+
32+
- [`3488411`](https://github.com/developit/microbundle/commit/34884116e21408305b337a9f6267f6c2ddc9e72d) [#700](https://github.com/developit/microbundle/pull/700) Thanks [@wardpeet](https://github.com/wardpeet)! - Disable warnings for node's builtin-modules when using node as a target environment.

package.json

Lines changed: 142 additions & 142 deletions
Original file line numberDiff line numberDiff line change
@@ -1,144 +1,144 @@
11
{
2-
"name": "microbundle",
3-
"version": "0.12.3",
4-
"description": "Zero-configuration bundler for tiny JS libs, powered by Rollup.",
5-
"main": "dist/microbundle.js",
6-
"source": "src/index.js",
7-
"bin": "dist/cli.js",
8-
"scripts": {
9-
"build": "npm run -s build:babel && npm run -s build:self",
10-
"build:babel": "babel-node src/cli.js --target=node --format cjs src/{cli,index}.js",
11-
"build:self": "node dist/cli.js --target=node --format cjs src/{cli,index}.js",
12-
"prepare": "npm run -s build",
13-
"prepare:babel": "babel src/*.js -d dist && npm t",
14-
"lint": "eslint src",
15-
"test": "npm run -s lint && npm run -s build && cross-env BABEL_ENV=test jest",
16-
"jest": "cross-env BABEL_ENV=test jest",
17-
"format": "prettier --write \"{*,{src,test}/**/*}.+(js|css)\"",
18-
"changeset": "changeset",
19-
"release": "npm run -s prepare && npm test && changeset publish"
20-
},
21-
"repository": "developit/microbundle",
22-
"prettier": {
23-
"singleQuote": true,
24-
"trailingComma": "all",
25-
"useTabs": true,
26-
"arrowParens": "avoid",
27-
"overrides": [
28-
{
29-
"files": "package.json",
30-
"options": {
31-
"useTabs": false,
32-
"parser": "json-stringify"
33-
}
34-
}
35-
]
36-
},
37-
"lint-staged": {
38-
"{src,test}/**/*.js": [
39-
"eslint --fix",
40-
"prettier --write"
41-
],
42-
"{*,{src,test}/**/*}.+(js|css)": [
43-
"prettier --write"
44-
],
45-
"*.md": [
46-
"prettier --write"
47-
]
48-
},
49-
"jest": {
50-
"testEnvironment": "node",
51-
"testURL": "http://localhost"
52-
},
53-
"husky": {
54-
"hooks": {
55-
"pre-commit": "lint-staged"
56-
}
57-
},
58-
"greenkeeper": {
59-
"lockfiles": {
60-
"outOfRangeUpdatesOnly": true
61-
}
62-
},
63-
"keywords": [
64-
"bundle",
65-
"rollup",
66-
"micro library"
67-
],
68-
"files": [
69-
"src",
70-
"dist"
71-
],
72-
"author": "Jason Miller <[email protected]> (http://jasonformat.com)",
73-
"license": "MIT",
74-
"dependencies": {
75-
"@babel/core": "^7.10.2",
76-
"@babel/plugin-proposal-class-properties": "7.7.4",
77-
"@babel/plugin-syntax-import-meta": "^7.10.1",
78-
"@babel/plugin-syntax-jsx": "^7.10.1",
79-
"@babel/plugin-transform-flow-strip-types": "^7.10.1",
80-
"@babel/plugin-transform-react-jsx": "^7.10.1",
81-
"@babel/plugin-transform-regenerator": "^7.10.1",
82-
"@babel/preset-env": "^7.11.0",
83-
"@babel/preset-flow": "^7.10.1",
84-
"@babel/preset-react": "^7.10.4",
85-
"@rollup/plugin-alias": "^3.1.1",
86-
"@rollup/plugin-babel": "^5.0.3",
87-
"@rollup/plugin-commonjs": "^13.0.0",
88-
"@rollup/plugin-json": "^4.1.0",
89-
"@rollup/plugin-node-resolve": "^6.1.0",
90-
"asyncro": "^3.0.0",
91-
"autoprefixer": "^9.8.0",
92-
"babel-plugin-macros": "^2.8.0",
93-
"babel-plugin-transform-async-to-promises": "^0.8.15",
94-
"babel-plugin-transform-replace-expressions": "^0.2.0",
95-
"brotli-size": "^4.0.0",
96-
"builtin-modules": "^3.1.0",
97-
"camelcase": "^5.3.1",
98-
"cssnano": "^4.1.10",
99-
"es6-promisify": "^6.1.1",
100-
"escape-string-regexp": "^4.0.0",
101-
"filesize": "^6.1.0",
102-
"gzip-size": "^5.1.1",
103-
"kleur": "^3.0.3",
104-
"lodash.merge": "^4.6.2",
105-
"module-details-from-path": "^1.0.3",
106-
"pretty-bytes": "^5.3.0",
107-
"rollup": "^1.32.1",
108-
"rollup-plugin-bundle-size": "^1.0.1",
109-
"rollup-plugin-es3": "^1.1.0",
110-
"rollup-plugin-postcss": "^2.9.0",
111-
"rollup-plugin-terser": "^5.3.0",
112-
"rollup-plugin-typescript2": "^0.25.3",
113-
"sade": "^1.7.3",
114-
"tiny-glob": "^0.2.6",
115-
"tslib": "^1.13.0",
116-
"typescript": "^3.9.5"
117-
},
118-
"devDependencies": {
119-
"@babel/cli": "^7.10.1",
120-
"@babel/node": "^7.10.1",
121-
"@babel/plugin-proposal-throw-expressions": "^7.10.1",
122-
"@changesets/changelog-github": "^0.2.6",
123-
"@changesets/cli": "^2.9.2",
124-
"babel-jest": "^24.8.0",
125-
"cross-env": "^6.0.3",
126-
"directory-tree": "^2.2.3",
127-
"eslint": "^6.8.0",
128-
"eslint-config-developit": "^1.2.0",
129-
"eslint-config-prettier": "^6.11.0",
130-
"eslint-plugin-prettier": "^3.1.4",
131-
"esm": "^3.2.22",
132-
"fs-extra": "^8.1.0",
133-
"husky": "^4.2.5",
134-
"jest": "^24.8.0",
135-
"lint-staged": "^10.2.10",
136-
"npm-merge-driver-install": "^1.1.1",
137-
"prettier": "^1.19.1",
138-
"regenerator-runtime": "^0.13.5",
139-
"rimraf": "^3.0.2",
140-
"shell-quote": "^1.6.1",
141-
"strip-ansi": "^6.0.0",
142-
"travis-size-report": "^1.1.0"
143-
}
2+
"name": "microbundle",
3+
"version": "0.12.4",
4+
"description": "Zero-configuration bundler for tiny JS libs, powered by Rollup.",
5+
"main": "dist/microbundle.js",
6+
"source": "src/index.js",
7+
"bin": "dist/cli.js",
8+
"scripts": {
9+
"build": "npm run -s build:babel && npm run -s build:self",
10+
"build:babel": "babel-node src/cli.js --target=node --format cjs src/{cli,index}.js",
11+
"build:self": "node dist/cli.js --target=node --format cjs src/{cli,index}.js",
12+
"prepare": "npm run -s build",
13+
"prepare:babel": "babel src/*.js -d dist && npm t",
14+
"lint": "eslint src",
15+
"test": "npm run -s lint && npm run -s build && cross-env BABEL_ENV=test jest",
16+
"jest": "cross-env BABEL_ENV=test jest",
17+
"format": "prettier --write \"{*,{src,test}/**/*}.+(js|css)\"",
18+
"changeset": "changeset",
19+
"release": "npm run -s prepare && npm test && changeset publish"
20+
},
21+
"repository": "developit/microbundle",
22+
"prettier": {
23+
"singleQuote": true,
24+
"trailingComma": "all",
25+
"useTabs": true,
26+
"arrowParens": "avoid",
27+
"overrides": [
28+
{
29+
"files": "package.json",
30+
"options": {
31+
"useTabs": false,
32+
"parser": "json-stringify"
33+
}
34+
}
35+
]
36+
},
37+
"lint-staged": {
38+
"{src,test}/**/*.js": [
39+
"eslint --fix",
40+
"prettier --write"
41+
],
42+
"{*,{src,test}/**/*}.+(js|css)": [
43+
"prettier --write"
44+
],
45+
"*.md": [
46+
"prettier --write"
47+
]
48+
},
49+
"jest": {
50+
"testEnvironment": "node",
51+
"testURL": "http://localhost"
52+
},
53+
"husky": {
54+
"hooks": {
55+
"pre-commit": "lint-staged"
56+
}
57+
},
58+
"greenkeeper": {
59+
"lockfiles": {
60+
"outOfRangeUpdatesOnly": true
61+
}
62+
},
63+
"keywords": [
64+
"bundle",
65+
"rollup",
66+
"micro library"
67+
],
68+
"files": [
69+
"src",
70+
"dist"
71+
],
72+
"author": "Jason Miller <[email protected]> (http://jasonformat.com)",
73+
"license": "MIT",
74+
"dependencies": {
75+
"@babel/core": "^7.10.2",
76+
"@babel/plugin-proposal-class-properties": "7.7.4",
77+
"@babel/plugin-syntax-import-meta": "^7.10.1",
78+
"@babel/plugin-syntax-jsx": "^7.10.1",
79+
"@babel/plugin-transform-flow-strip-types": "^7.10.1",
80+
"@babel/plugin-transform-react-jsx": "^7.10.1",
81+
"@babel/plugin-transform-regenerator": "^7.10.1",
82+
"@babel/preset-env": "^7.11.0",
83+
"@babel/preset-flow": "^7.10.1",
84+
"@babel/preset-react": "^7.10.4",
85+
"@rollup/plugin-alias": "^3.1.1",
86+
"@rollup/plugin-babel": "^5.0.3",
87+
"@rollup/plugin-commonjs": "^13.0.0",
88+
"@rollup/plugin-json": "^4.1.0",
89+
"@rollup/plugin-node-resolve": "^6.1.0",
90+
"asyncro": "^3.0.0",
91+
"autoprefixer": "^9.8.0",
92+
"babel-plugin-macros": "^2.8.0",
93+
"babel-plugin-transform-async-to-promises": "^0.8.15",
94+
"babel-plugin-transform-replace-expressions": "^0.2.0",
95+
"brotli-size": "^4.0.0",
96+
"builtin-modules": "^3.1.0",
97+
"camelcase": "^5.3.1",
98+
"cssnano": "^4.1.10",
99+
"es6-promisify": "^6.1.1",
100+
"escape-string-regexp": "^4.0.0",
101+
"filesize": "^6.1.0",
102+
"gzip-size": "^5.1.1",
103+
"kleur": "^3.0.3",
104+
"lodash.merge": "^4.6.2",
105+
"module-details-from-path": "^1.0.3",
106+
"pretty-bytes": "^5.3.0",
107+
"rollup": "^1.32.1",
108+
"rollup-plugin-bundle-size": "^1.0.1",
109+
"rollup-plugin-es3": "^1.1.0",
110+
"rollup-plugin-postcss": "^2.9.0",
111+
"rollup-plugin-terser": "^5.3.0",
112+
"rollup-plugin-typescript2": "^0.25.3",
113+
"sade": "^1.7.3",
114+
"tiny-glob": "^0.2.6",
115+
"tslib": "^1.13.0",
116+
"typescript": "^3.9.5"
117+
},
118+
"devDependencies": {
119+
"@babel/cli": "^7.10.1",
120+
"@babel/node": "^7.10.1",
121+
"@babel/plugin-proposal-throw-expressions": "^7.10.1",
122+
"@changesets/changelog-github": "^0.2.6",
123+
"@changesets/cli": "^2.9.2",
124+
"babel-jest": "^24.8.0",
125+
"cross-env": "^6.0.3",
126+
"directory-tree": "^2.2.3",
127+
"eslint": "^6.8.0",
128+
"eslint-config-developit": "^1.2.0",
129+
"eslint-config-prettier": "^6.11.0",
130+
"eslint-plugin-prettier": "^3.1.4",
131+
"esm": "^3.2.22",
132+
"fs-extra": "^8.1.0",
133+
"husky": "^4.2.5",
134+
"jest": "^24.8.0",
135+
"lint-staged": "^10.2.10",
136+
"npm-merge-driver-install": "^1.1.1",
137+
"prettier": "^1.19.1",
138+
"regenerator-runtime": "^0.13.5",
139+
"rimraf": "^3.0.2",
140+
"shell-quote": "^1.6.1",
141+
"strip-ansi": "^6.0.0",
142+
"travis-size-report": "^1.1.0"
143+
}
144144
}

0 commit comments

Comments
 (0)