Skip to content

Commit

Permalink
init build release process
Browse files Browse the repository at this point in the history
  • Loading branch information
albertleigh committed Mar 12, 2019
1 parent d1f2150 commit b9e8ee2
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
## [0.20.10] 2019-03-12
- Initial stable release
21 changes: 21 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) 2018-2019 Wentao Li

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
21 changes: 20 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,20 @@
#redux-solace
# Redux solace
[![version][version-badge]][CHANGELOG] [![license][license-badge]][LICENSE]

Redux-solace wraps the solace js library

* It is designed for browser runtime not for node js runtime
* Written in Typescript
* All action parameters follow the Redux/FLUX pattern
* Wrap solace api into one core class
* Support Multi-session management
* Support Publish/Subscribe to topics
* Support Queue msg
* Support request/reply msg


[LICENSE]: ./LICENSE.md
[CHANGELOG]: ./CHANGELOG.md

[version-badge]: https://img.shields.io/badge/version-0.20.10-blue.svg
[license-badge]: https://img.shields.io/badge/license-MIT-blue.svg
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "redux-solace",
"version": "0.20.10",
"version": "0.20.10-beta",
"description": "solace redux middleware wrapper",
"main": "index.js",
"scripts": {
Expand All @@ -10,6 +10,8 @@
"build:copy-files": "node ./scripts/copy-files.js",
"build": "yarn prebuild && yarn build:es2015 && yarn build:copy-files",
"build-prod": "yarn prebuild && yarn build:es2015-prod && yarn build:copy-files",
"release-staging": "yarn build && npm publish build --registry=https://albertli.ddns.net:9004/repository/npm-private/",
"release":"yarn build-prod && npm publish build --access public",
"test": "node scripts/test/js"
},
"repository": {
Expand Down

0 comments on commit b9e8ee2

Please sign in to comment.