traitify-widgets 2.0.0 → 2.0.1
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/build/traitify.js +1 -1
- package/build/traitify.js.map +1 -1
- package/package.json +4 -1
package/package.json
CHANGED
|
@@ -1,15 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "traitify-widgets",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"description": "Traitiy Widgets",
|
|
5
5
|
"repository": "github:traitify/traitify-widgets",
|
|
6
6
|
"main": "./build/traitify.js",
|
|
7
7
|
"files": [
|
|
8
8
|
"build"
|
|
9
9
|
],
|
|
10
|
+
"publishConfig": {"tag": "2.x"},
|
|
10
11
|
"scripts": {
|
|
11
12
|
"build": "webpack --node-env=production --progress",
|
|
12
13
|
"build:compatibility": "webpack --env mode=compatibility --node-env=production --progress",
|
|
14
|
+
"build:install": "npm i --package-lock-only && npm run build",
|
|
13
15
|
"dev": "webpack serve --env mode=browser",
|
|
14
16
|
"dev:compatibility": "webpack serve --env mode=compatibility",
|
|
15
17
|
"dev:secure": "webpack serve --env mode=browser --https",
|
|
@@ -20,6 +22,7 @@
|
|
|
20
22
|
"prebuild:compatibility": "mkdirp build",
|
|
21
23
|
"prestart": "npm run build",
|
|
22
24
|
"pretest": "npm run lint",
|
|
25
|
+
"publish:alpha": "npm run build:install && npm publish --tag alpha",
|
|
23
26
|
"test": "jest --config test/jest.config.js --coverage",
|
|
24
27
|
"test:watch": "jest --config test/jest.config.js --watch",
|
|
25
28
|
"test:updateSnap": "jest --config test/jest.config.js --updateSnapshot"
|