Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 8344fe3

Browse files
committedJun 17, 2020
Bump version
1 parent 3362cf7 commit 8344fe3

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed
 

‎package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "arduino-iot-js",
3-
"version": "0.6.0-beta.0",
3+
"version": "0.6.0-beta.1",
44
"license": "GPLv3",
55
"description": "JS module providing Arduino Create IoT Cloud Connection",
66
"main": "./lib/index.js",
@@ -49,7 +49,9 @@
4949
"lint": "./node_modules/.bin/eslint src",
5050
"lint-fix": "./node_modules/.bin/eslint --fix src --ext .js",
5151
"clean": "rimraf lib es dist",
52-
"build": "npm run clean && rollup -c && rollup -c ./rollup.config.lib.js"
52+
"build:es": "rollup -c",
53+
"build:lib": "TS_NODE_PROJECT='./tsconfig.commonjs.json' && rollup -c ./rollup.config.lib.js",
54+
"build": "npm run clean && npm run build:es && npm run build:lib"
5355
},
5456
"repository": {
5557
"type": "git",

0 commit comments

Comments
 (0)
Please sign in to comment.