@tagplus/components 2.1.0 → 2.1.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/README.md +3 -3
- package/package.json +6 -4
package/README.md
CHANGED
|
@@ -2,17 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
### Run your tests
|
|
4
4
|
```
|
|
5
|
-
|
|
5
|
+
npm run test
|
|
6
6
|
```
|
|
7
7
|
|
|
8
8
|
### Lints and fixes files
|
|
9
9
|
```
|
|
10
|
-
|
|
10
|
+
npm run lint
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
### Run your unit tests
|
|
14
14
|
```
|
|
15
|
-
|
|
15
|
+
npm run test:unit
|
|
16
16
|
```
|
|
17
17
|
|
|
18
18
|
### Customize configuration
|
package/package.json
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"email": "bruno@tagplus.com.br"
|
|
9
9
|
}
|
|
10
10
|
],
|
|
11
|
-
"version": "2.1.
|
|
11
|
+
"version": "2.1.1",
|
|
12
12
|
"main": "./dist/tp.common.js",
|
|
13
13
|
"directories": {
|
|
14
14
|
"lib": "src/lib"
|
|
@@ -35,8 +35,10 @@
|
|
|
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": "npm run build && npm publish --access public",
|
|
39
|
-
"pub:
|
|
38
|
+
"pub:major": "npm run build && npm version major && npm publish --access public",
|
|
39
|
+
"pub:minor": "npm run build && npm version minor && npm publish --access public",
|
|
40
|
+
"pub": "npm run build && npm version patch && npm publish --access public",
|
|
41
|
+
"pub:beta": "npm run build && npm version patch && npm publish --tag beta",
|
|
40
42
|
"serve": "vue-cli-service serve --open ./examples/main.js",
|
|
41
43
|
"start": "npm run serve",
|
|
42
44
|
"install:clean": "rm -rf package-lock.json yarn.lock & rm -rf node_modules & npm install",
|
|
@@ -79,7 +81,7 @@
|
|
|
79
81
|
"eslint-plugin-vue": "^9.4.0",
|
|
80
82
|
"husky": "^8.0.1",
|
|
81
83
|
"jest": "^27.1.0",
|
|
82
|
-
"lint-staged": "^13.
|
|
84
|
+
"lint-staged": "^13.2.2",
|
|
83
85
|
"node-sass": "^7.0.1",
|
|
84
86
|
"nodemon": "^2.0.19",
|
|
85
87
|
"prettier": "^2.7.1",
|