@juki-team/commons 0.1.31 → 0.1.32

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 +4 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juki-team/commons",
3
- "version": "0.1.31",
3
+ "version": "0.1.32",
4
4
  "author": "juki-team",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -24,11 +24,9 @@
24
24
  "scripts": {
25
25
  "docs": "typedoc src/index.ts",
26
26
  "watch": "tsc --watch",
27
- "build": "rm -rf docs && rm -rf dist && tsc && yarn docs",
28
- "git:commit-push": "f() { param=${1}; message=${param:-chore}; git add .; git commit -m \"$message\"; npm version patch --no-git-tag-version; npm run build; npm publish; version=\"v$(node -p \"require('./package.json').version\")\"; git add .; git commit -m $version; git push origin main; git tag -a $version -m $version; git push origin --tags; }; f",
29
- "git:push": "f() { npm version patch --no-git-tag-version; npm run build; npm publish; version=\"v$(node -p \"require('./package.json').version\")\"; git add .; git commit -m $version; git push origin main; git tag -a $version -m $version; git push origin --tags; }; f",
30
- "push-commit": "f() { yarn build && yarn git-push \"${1}\"; }; f",
31
- "push": "yarn build && yarn git:push",
27
+ "build": "rm -rf docs && rm -rf dist && tsc && npm run docs",
28
+ "commit-push": "f() { param=${1}; message=${param:-chore}; git add .; git commit -m \"$message\"; npm version patch --no-git-tag-version; npm run build; npm publish; version=\"v$(node -p \"require('./package.json').version\")\"; git add .; git commit -m $version; git push origin main; git tag -a $version -m $version; git push origin --tags; }; f",
29
+ "push": "f() { npm version patch --no-git-tag-version; npm run build; npm publish; version=\"v$(node -p \"require('./package.json').version\")\"; git add .; git commit -m $version; git push origin main; git tag -a $version -m $version; git push origin --tags; }; f",
32
30
  "lint": "biome check src/",
33
31
  "lint:fix": "biome check --write src/",
34
32
  "lint:format": "biome format --write src/"