@tagplus/components 2.0.26 → 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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +11 -9
package/README.md CHANGED
@@ -2,17 +2,17 @@
2
2
 
3
3
  ### Run your tests
4
4
  ```
5
- yarn run test
5
+ npm run test
6
6
  ```
7
7
 
8
8
  ### Lints and fixes files
9
9
  ```
10
- yarn run lint
10
+ npm run lint
11
11
  ```
12
12
 
13
13
  ### Run your unit tests
14
14
  ```
15
- yarn run test:unit
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.0.26",
11
+ "version": "2.1.1",
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}": "yarn lint"
25
+ "*.{js,vue,css}": "npm run lint"
26
26
  },
27
27
  "jest": {
28
28
  "testEnvironment": "node"
@@ -31,16 +31,18 @@
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": "yarn docs",
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": "yarn build && yarn publish --access public",
39
- "pub:beta": "yarn build && yarn publish --tag beta",
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
- "start": "yarn serve",
42
- "install:clean": "rm -rf yarn.lock & rm -rf node_modules & yarn install",
43
- "install:clear": "yarn install:clean",
43
+ "start": "npm run serve",
44
+ "install:clean": "rm -rf package-lock.json yarn.lock & rm -rf node_modules & npm install",
45
+ "install:clear": "npm run install:clean",
44
46
  "test": "jest",
45
47
  "test:coverage": "jest --collectCoverage",
46
48
  "test:unit": "vue-cli-service test:unit",
@@ -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.0.2",
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",