react-char-fill 1.0.12 → 1.0.13

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 +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-char-fill",
3
- "version": "1.0.12",
3
+ "version": "1.0.13",
4
4
  "author": "Alex Abushanab",
5
5
  "repository": {
6
6
  "type": "git",
@@ -80,6 +80,7 @@
80
80
  "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
81
81
  "prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
82
82
  "preview": "vite preview",
83
+ "publish": "bun run build && bun run publish:npm-bump && bun run publish:github",
83
84
  "publish-name:restore": "node -e \"let pkg=require('./package.json'); pkg.name='react-char-fill'; require('fs').writeFileSync('package.json', JSON.stringify(pkg, null, 2));\"",
84
85
  "publish-name:scope": "node -e \"let pkg=require('./package.json'); pkg.name='@lexabu/react-char-fill'; require('fs').writeFileSync('package.json', JSON.stringify(pkg, null, 2));\"",
85
86
  "publish:github-bump": "npm version patch && npm run publish:github-prepare",