Skip to content

Commit

Permalink
chore(release): build-es-v0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
buns committed Jan 19, 2021
1 parent bebb1c0 commit 972509a
Show file tree
Hide file tree
Showing 2 changed files with 60 additions and 43 deletions.
17 changes: 17 additions & 0 deletions packages/plugin-build-es/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# @siujs/plugin-build-es ChangeLog

## [v0.0.2](https://github.com/siujs/plugins/compare/74492aaef296c7620003487cc3ec0d7693a6adde...v0.0.2) (2021-01-19)

### Code Refactoring

- change `source-dir` to optional and ([c4b7e78](https://github.com/siujs/plugins/commit/c4b7e78a51d1062c78e15b2f737aa5e46e4aaf6e))
- deprecate `next:HookHandlerNext` ([193c751](https://github.com/siujs/plugins/commit/193c751926ef7db2324230c3480ab5e0b4e62d00))
- rm unused opts of esbuild ([67a2f56](https://github.com/siujs/plugins/commit/67a2f5676b44cb4ea3b1c1b3469501b6a41bac11))

### Features

- add `transformConfig` handle ([0922bb2](https://github.com/siujs/plugins/commit/0922bb263be9e91ccd9f06422606df65a05f29de))
- improve build logic of es ([0cf8f2f](https://github.com/siujs/plugins/commit/0cf8f2fdf9f8bb25aa7882a5a6afd5b70a72d30c))

### Performance Improvements

- improve error capture and enhance build process ([42f8a5b](https://github.com/siujs/plugins/commit/42f8a5bec7bf3df4b4d158354157f6812f44f995))

## [v0.0.1](https://github.com/siujs/plugins/compare/74492aaef296c7620003487cc3ec0d7693a6adde...v0.0.1) (2021-01-19)

### Features
Expand Down
86 changes: 43 additions & 43 deletions packages/plugin-build-es/package.json
Original file line number Diff line number Diff line change
@@ -1,45 +1,45 @@
{
"name": "@siujs/plugin-build-es",
"version": "0.0.1",
"description": "Support tree-shaking es package, optimize package size",
"keywords": [
"es",
"import",
"build",
"siujs"
],
"author": "buns <kuafujs@126.com>",
"homepage": "https://github.com/siujs/plugins",
"license": "MIT",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/siujs/plugins.git"
},
"bugs": {
"url": "https://github.com/siujs/plugins/issues"
},
"peerDependencies": {
"@siujs/core": "1.0.0-beta.12",
"@siujs/builtin-build": "1.0.0-beta.12"
},
"dependencies": {
"@siujs/core": "1.0.0-beta.12",
"@siujs/builtin-build": "1.0.0-beta.12",
"chalk": "^4.1.0",
"fs-extra": "^9.0.1",
"glob": "^7.1.6",
"pretty-ms": "^7.0.1"
},
"devDependencies": {
"@types/fs-extra": "^9.0.6"
}
"name": "@siujs/plugin-build-es",
"version": "0.0.2",
"description": "Support tree-shaking es package, optimize package size",
"keywords": [
"es",
"import",
"build",
"siujs"
],
"author": "buns <kuafujs@126.com>",
"homepage": "https://github.com/siujs/plugins",
"license": "MIT",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/siujs/plugins.git"
},
"bugs": {
"url": "https://github.com/siujs/plugins/issues"
},
"peerDependencies": {
"@siujs/core": "1.0.0-beta.12",
"@siujs/builtin-build": "1.0.0-beta.12"
},
"dependencies": {
"@siujs/core": "1.0.0-beta.12",
"@siujs/builtin-build": "1.0.0-beta.12",
"chalk": "^4.1.0",
"fs-extra": "^9.0.1",
"glob": "^7.1.6",
"pretty-ms": "^7.0.1"
},
"devDependencies": {
"@types/fs-extra": "^9.0.6"
}
}

0 comments on commit 972509a

Please sign in to comment.