react-char-fill 1.0.7 → 1.0.8

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 +3 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-char-fill",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "author": "Alex Abushanab",
5
5
  "repository": {
6
6
  "type": "git",
@@ -83,7 +83,8 @@
83
83
  "publish:npm": "npm publish --registry=https://registry.npmjs.org/",
84
84
  "publish-bump:npm": "npm version patch && npm publish --registry=https://registry.npmjs.org/",
85
85
  "publish:github": "npm run publish:github-prepare",
86
- "publish:github-prepare": "export $(cat .env | xargs) && npm version patch && npm run name:scope && npm publish --registry=https://npm.pkg.github.com && npm run name:restore",
86
+ "publishbump:github": "npm version patch && npm run publish:github-prepare",
87
+ "publish:github-prepare": "export $(cat .env | xargs) && npm run name:scope && npm publish --registry=https://npm.pkg.github.com && npm run name:restore",
87
88
  "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));\"",
88
89
  "name:restore": "node -e \"let pkg=require('./package.json'); pkg.name='react-char-fill'; require('fs').writeFileSync('package.json', JSON.stringify(pkg, null, 2));\""
89
90
  },