@arbocollab/arbo-web-search 1.0.3 → 1.0.4

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/package.json CHANGED
@@ -1,21 +1,22 @@
1
1
  {
2
2
  "name": "@arbocollab/arbo-web-search",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "type": "module",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/arbocollab/arbo-ui-components.git"
8
8
  },
9
9
  "scripts": {
10
- "dev": "vite",
10
+ "dev": "vite ",
11
11
  "preview": "vite preview",
12
12
  "lint": "eslint --ext .ts,.tsx,.vue src",
13
13
  "lint:fix": "eslint --ext .ts,.tsx,.vue src --fix",
14
14
  "format": "prettier --write .",
15
15
  "check": "prettier --write . && eslint --ext .ts,.tsx,.vue src --fix",
16
16
  "prepare-build": "node scripts/clean-package-json.js",
17
+ "build:lib-staging": "NODE_ENV=development vue-tsc -b && vite build --mode development && cp package.json dist/ && cp README.md dist/ && cp .npmrc dist/ && cp .npmignore dist/ && npm run prepare-build",
17
18
  "build:lib-production": "NODE_ENV=production vue-tsc -b && vite build --mode production && cp package.json dist/ && cp README.md dist/ && cp npmjs.npmrc dist/ && cp .npmignore dist/ && npm run prepare-build",
18
- "publish:lib:github-pkg": "cd dist && npm publish",
19
+ "publish:lib:github-pkg": "cd dist && npm publish --userconfig=.npmrc",
19
20
  "publish-lib:npmjs": "cd dist && npm publish --userconfig=npmjs.npmrc --access public",
20
21
  "analyze": "npx vite-bundle-visualizer"
21
22
  },