@jseeio/jsee 0.3.1 → 0.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jseeio/jsee",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "description": "JavaScript Execution Environment",
5
5
  "main": "dist/jsee.js",
6
6
  "unpkg": "dist/jsee.js",
@@ -10,14 +10,14 @@
10
10
  "build-dev": "webpack --mode=development --progress --stats-children --env DEVELOPMENT",
11
11
  "build": "webpack --mode=production --progress && webpack --mode=production --progress --env RUNTIME && npm test",
12
12
  "watch": "nodemon --watch . --ignore dist,.git --ext vue,js,css,html --exec 'npm run build-dev && npm run test:basic'",
13
- "prepublishOnly": "npm run build && npm test",
13
+ "prepublishOnly": "npm run build",
14
14
  "test": "npm run test:basic && npm run test:python",
15
15
  "test:basic": "jest test/test-basic.test.js --detectOpenHandles",
16
16
  "test:python": "jest test/test-python.test.js --detectOpenHandles",
17
17
  "test-head": "HEADLESS=false npm test"
18
18
  },
19
19
  "bin": {
20
- "jsee": "bin/cmd.js"
20
+ "jsee": "./bin/jsee"
21
21
  },
22
22
  "author": "Anton Zemlyansky",
23
23
  "license": "MIT",
File without changes