diff options
-rw-r--r-- | .gitignore | 3 | ||||
-rw-r--r-- | .npmignore | 10 | ||||
-rw-r--r-- | package.json | 6 | ||||
-rw-r--r-- | version.properties | 2 |
4 files changed, 15 insertions, 6 deletions
@@ -4,4 +4,5 @@ node_modules/ **/*.d.ts **/*.js.map **/*.js -!webpack.config.js
\ No newline at end of file +!webpack.config.js +npm-debug.log
\ No newline at end of file @@ -2,4 +2,12 @@ !**/*.d.ts **/*.js.map node_modules/ -tsconfig.json
\ No newline at end of file +tsconfig.json +webpack.config.js +version.properties +.gitreview +.gitattributes +.idea/ +.gitignore +.npm-debug.log +INFO.yaml
\ No newline at end of file diff --git a/package.json b/package.json index 9bbe3d0..56915c0 100644 --- a/package.json +++ b/package.json @@ -1,13 +1,13 @@ { "name": "sdc-pubsub", - "version": "1.0.15", + "version": "1.0.18", "description": "Publish Subscribe library using post message for sdc plugins", "main": "index.js", "author": "Idan Amit", "license": "Apache-2.0", "scripts": { - "clean": "rimraf dist && rimraf lib", - "build": "webpack --mode development" + "clean": "rimraf dist", + "build": "tsc && webpack --mode development" }, "keywords": [ "sdc", diff --git a/version.properties b/version.properties index 66914f1..4d6d32e 100644 --- a/version.properties +++ b/version.properties @@ -5,7 +5,7 @@ major=1 minor=0 -patch=14 +patch=16 base_version=${major}.${minor}.${patch} |