Skip to content

Commit

Permalink
chore(package.json): bump version manually (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
alvinkl committed Mar 13, 2019
1 parent e7801b2 commit 020fc08
Show file tree
Hide file tree
Showing 6 changed files with 61 additions and 11 deletions.
2 changes: 1 addition & 1 deletion packages/Maleo.js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@airy/maleo",
"version": "0.0.3",
"version": "0.0.4",
"description": "Un-opinionated Universal Rendering Javascript Framework",
"repository": {
"type": "git",
Expand Down
6 changes: 3 additions & 3 deletions packages/plugins/css-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@airy/maleo-css-plugin",
"version": "0.0.3",
"version": "0.0.4",
"main": "lib/index.js",
"license": "MIT",
"scripts": {
Expand All @@ -9,15 +9,15 @@
"prepublish": "yarn build"
},
"peerDependencies": {
"@airy/maleo": "^0.0.3"
"@airy/maleo": "^0.0.4"
},
"dependencies": {
"css-loader": "^1.0.1",
"hoist-non-react-statics": "^3.1.0",
"isomorphic-style-loader": "^4.0.0"
},
"devDependencies": {
"@airy/maleo-gulp-plugin": "^0.0.3",
"@airy/maleo-gulp-plugin": "^0.0.4",
"gulp": "gulpjs/gulp.git#4.0"
}
}
2 changes: 1 addition & 1 deletion packages/plugins/gulp-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@airy/maleo-gulp-plugin",
"version": "0.0.3",
"version": "0.0.4",
"main": "index.js",
"license": "MIT",
"peerDependencies": {
Expand Down
6 changes: 3 additions & 3 deletions packages/plugins/redux-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@airy/maleo-redux-plugin",
"version": "0.0.3",
"version": "0.0.4",
"main": "lib/index.js",
"license": "MIT",
"scripts": {
Expand All @@ -9,14 +9,14 @@
"prepublish": "yarn build"
},
"peerDependencies": {
"@airy/maleo": "^0.0.3",
"@airy/maleo": "^0.0.4",
"gulp": "gulpjs/gulp.git#4.0",
"prop-types": "^15.6.2",
"react": "^16.6.3",
"react-redux": "^5.1.1",
"redux": "^4.0.1"
},
"devDependencies": {
"@airy/maleo-gulp-plugin": "^0.0.3"
"@airy/maleo-gulp-plugin": "^0.0.4"
}
}
50 changes: 50 additions & 0 deletions packages/plugins/typescript-plugin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
## 0.0.4 (2019-03-13)


### Bug Fixes

* **babelconfigjs:** fix built absolute path to relative path ([#19](https://github.com/alvinkl/maleo.js/issues/19)) ([064352c](https://github.com/alvinkl/maleo.js/commit/064352c))
* **webpack client server:** remove hmr but fix sync ([#33](https://github.com/alvinkl/maleo.js/issues/33)) ([8a9f326](https://github.com/alvinkl/maleo.js/commit/8a9f326))


### Features

* **maleo playground:** add default server and client ([#29](https://github.com/alvinkl/maleo.js/issues/29)) ([e40897b](https://github.com/alvinkl/maleo.js/commit/e40897b))


### BREAKING CHANGES

* **maleo playground:** client haven't use the route yet

feat(client route): add register route

added register route for client to be able to pass it to window and feed to default client

docs(readmemd): update docs for default server and client

feat(webpack client wrap): add register wrap to window

feat(webpack register-loader client): auto register

add auto register using register loader for wrap and routes to be used by client

feat(webpack app client): add auto register for app

refactor(webpack): clean up static entries

refactor static entries to be more readable

fix(webpack): comment out hardsourcewbp

fix(webpack): fix node externals

fix(webpack server tsplugin): fix error not bundling on client

error caused by webpack getting imported to server.ts not sure what cause the error

feat(client): added register entry class

docs(readmemd): update register route readme



6 changes: 3 additions & 3 deletions packages/plugins/typescript-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@airy/maleo-typescript-plugin",
"version": "0.0.3",
"version": "0.0.4",
"main": "lib/index.js",
"license": "MIT",
"scripts": {
Expand All @@ -9,7 +9,7 @@
"prepublish": "yarn build"
},
"peerDependencies": {
"@airy/maleo": "^0.0.3"
"@airy/maleo": "^0.0.4"
},
"dependencies": {
"fork-ts-checker-webpack-plugin": "^0.4.14",
Expand All @@ -18,7 +18,7 @@
"typescript": "^3.1.5"
},
"devDependencies": {
"@airy/maleo-gulp-plugin": "^0.0.3",
"@airy/maleo-gulp-plugin": "^0.0.4",
"gulp": "gulpjs/gulp.git#4.0"
}
}

0 comments on commit 020fc08

Please sign in to comment.