ayiin 2.0.4 → 2.0.5

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 (3) hide show
  1. package/ayiin/index.js +1 -1
  2. package/package.json +1 -1
  3. package/save +0 -26
package/ayiin/index.js CHANGED
@@ -18143,7 +18143,7 @@ https://github.com/browserify/crypto-browserify`);
18143
18143
  // package.json
18144
18144
  var package_default = {
18145
18145
  name: "ayiin",
18146
- version: "2.0.4",
18146
+ version: "2.0.5",
18147
18147
  description: "Library Pribadi Yang Gak Ada Isinya",
18148
18148
  main: "ayiin/index.js",
18149
18149
  scripts: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ayiin",
3
- "version": "2.0.4",
3
+ "version": "2.0.5",
4
4
  "description": "Library Pribadi Yang Gak Ada Isinya",
5
5
  "main": "ayiin/index.js",
6
6
  "scripts": {
package/save DELETED
@@ -1,26 +0,0 @@
1
- #!/usr/bin/env bash
2
-
3
- date=$(date +"%d-%m-%Y %H:%M:%S")
4
-
5
- # Tanya dulu
6
- read -p "Apakah ingin bump versi package.json? (y/N): " answer
7
-
8
- if [[ "$answer" == "y" || "$answer" == "Y" ]]; then
9
- echo "📦 Bump patch version package.json"
10
- npm version patch --no-git-tag-version
11
- else
12
- echo "ℹ️ Skip bump version"
13
- fi
14
-
15
- echo date: $date
16
-
17
- echo "Adding all files to git"
18
- git add .
19
-
20
- echo "Committing to git"
21
- git commit -m "Ayiin commit on $date"
22
-
23
- echo "Pushing to git"
24
- git push
25
-
26
- echo "Done"