traitify-widgets 3.2.0-alpha.2 → 3.2.0
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/scripts/i18n-sync.js +1 -0
- package/build/traitify.js +1 -1
- package/build/traitify.js.map +1 -1
- package/package.json +6 -5
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "traitify-widgets",
|
|
3
|
-
"version": "3.2.0
|
|
3
|
+
"version": "3.2.0",
|
|
4
4
|
"description": "Traitiy Widgets",
|
|
5
5
|
"repository": "github:traitify/traitify-widgets",
|
|
6
6
|
"main": "./build/traitify.js",
|
|
7
7
|
"files": [
|
|
8
|
-
"build"
|
|
8
|
+
"build/*"
|
|
9
9
|
],
|
|
10
10
|
"scripts": {
|
|
11
11
|
"build": "webpack --node-env=production --progress",
|
|
@@ -13,9 +13,10 @@
|
|
|
13
13
|
"build:install": "npm i --package-lock-only && npm run build",
|
|
14
14
|
"dev": "webpack serve --env mode=browser",
|
|
15
15
|
"dev:secure": "webpack serve --env mode=browser --https",
|
|
16
|
-
"
|
|
17
|
-
"lint
|
|
18
|
-
"lint:
|
|
16
|
+
"i18n:sync": "node build/scripts/i18n-sync.js",
|
|
17
|
+
"lint": "eslint scripts src test",
|
|
18
|
+
"lint:fix": "eslint {scripts,src,test} --fix",
|
|
19
|
+
"lint:watch": "esw -w {scripts,src,test} --color",
|
|
19
20
|
"prebuild": "mkdirp build",
|
|
20
21
|
"prebuild:compatibility": "mkdirp build",
|
|
21
22
|
"prestart": "npm run build",
|