@tagplus/components 2.0.26 → 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.
Files changed (1) hide show
  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.26",
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}": "yarn lint"
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": "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": "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": "yarn serve",
42
- "install:clean": "rm -rf yarn.lock & rm -rf node_modules & yarn install",
43
- "install:clear": "yarn install:clean",
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",