@tagplus/components 2.0.25 → 2.1.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/dist/tp.common.js +1 -1
- package/dist/tp.common.js.map +1 -1
- package/dist/tp.umd.js +1 -1
- package/dist/tp.umd.js.map +1 -1
- package/dist/tp.umd.min.js +1 -1
- package/dist/tp.umd.min.js.map +1 -1
- package/package.json +8 -8
package/package.json
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"email": "bruno@tagplus.com.br"
|
|
9
9
|
}
|
|
10
10
|
],
|
|
11
|
-
"version": "2.0
|
|
11
|
+
"version": "2.1.0",
|
|
12
12
|
"main": "./dist/tp.common.js",
|
|
13
13
|
"directories": {
|
|
14
14
|
"lib": "src/lib"
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"node": ">=14.0"
|
|
23
23
|
},
|
|
24
24
|
"lint-staged": {
|
|
25
|
-
"*.{js,vue,css}": "
|
|
25
|
+
"*.{js,vue,css}": "npm run lint"
|
|
26
26
|
},
|
|
27
27
|
"jest": {
|
|
28
28
|
"testEnvironment": "node"
|
|
@@ -31,16 +31,16 @@
|
|
|
31
31
|
"scripts": {
|
|
32
32
|
"build": "NODE_ENV=production && vue-cli-service build --target lib --name tp ./src/main.js",
|
|
33
33
|
"build:dev": "NODE_ENV=development && vue-cli-service build --mode development --target lib --name tp ./src/main.js",
|
|
34
|
-
"doc": "
|
|
34
|
+
"doc": "npm run docs",
|
|
35
35
|
"docs": "nodemon --exec \"vuese gen && vuese serve\" --watch ./src -e js,vue,scss",
|
|
36
36
|
"docs:gen": "vuese gen",
|
|
37
37
|
"lint": "eslint --cache --ext .js,.vue --ignore-path .gitignore .",
|
|
38
|
-
"pub": "
|
|
39
|
-
"pub:beta": "
|
|
38
|
+
"pub": "npm run build && npm publish --access public",
|
|
39
|
+
"pub:beta": "npm run build && npm version minor && npm publish --tag beta",
|
|
40
40
|
"serve": "vue-cli-service serve --open ./examples/main.js",
|
|
41
|
-
"start": "
|
|
42
|
-
"install:clean": "rm -rf yarn.lock & rm -rf node_modules &
|
|
43
|
-
"install:clear": "
|
|
41
|
+
"start": "npm run serve",
|
|
42
|
+
"install:clean": "rm -rf package-lock.json yarn.lock & rm -rf node_modules & npm install",
|
|
43
|
+
"install:clear": "npm run install:clean",
|
|
44
44
|
"test": "jest",
|
|
45
45
|
"test:coverage": "jest --collectCoverage",
|
|
46
46
|
"test:unit": "vue-cli-service test:unit",
|