@ahqstore/cli 0.16.0-alpha.25 → 0.16.0-alpha.28
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/.build +1 -1
- package/Cargo.toml +1 -1
- package/README.md +1 -1
- package/dart/CHANGELOG.md +4 -2
- package/dart/bin/ahqstore.dart +1 -1
- package/dart/pubspec.yaml +1 -1
- package/jsr.json +1 -1
- package/package.json +1 -1
- package/zscripts/updateDart.ps1 +9 -2
package/.build
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2026-02-24
|
|
1
|
+
2026-02-24 07:18:42
|
package/Cargo.toml
CHANGED
package/README.md
CHANGED
|
@@ -78,7 +78,7 @@ deno install -g npm:@ahqstore/cli
|
|
|
78
78
|
### Using JSR
|
|
79
79
|
|
|
80
80
|
```sh
|
|
81
|
-
deno install -A -f -g -n ahqstore https://jsr.io/@ahqstore/cli/0.16.0-alpha.
|
|
81
|
+
deno install -A -f -g -n ahqstore https://jsr.io/@ahqstore/cli/0.16.0-alpha.28/js/cli.js
|
|
82
82
|
```
|
|
83
83
|
|
|
84
84
|
## Bun
|
package/dart/CHANGELOG.md
CHANGED
package/dart/bin/ahqstore.dart
CHANGED
package/dart/pubspec.yaml
CHANGED
package/jsr.json
CHANGED
package/package.json
CHANGED
package/zscripts/updateDart.ps1
CHANGED
|
@@ -5,7 +5,6 @@ $pubspec = Get-Content "./dart/pubspec.yaml" -Raw
|
|
|
5
5
|
|
|
6
6
|
$output = $pubspec -replace "version: ([^`"\s<]+)", "version: $version"
|
|
7
7
|
|
|
8
|
-
$pubspec > "./dart/pubspec.bak.yaml"
|
|
9
8
|
$output > "./dart/pubspec.yaml"
|
|
10
9
|
|
|
11
10
|
# Update the dart file
|
|
@@ -13,5 +12,13 @@ $dartbin = Get-Content "./dart/bin/ahqstore.dart" -Raw
|
|
|
13
12
|
|
|
14
13
|
$output = $dartbin -replace "const String version = `"([^`"\s<]+)`";", "const String version = `"$version`";"
|
|
15
14
|
|
|
16
|
-
$dartbin > "./dart/bin/ahqstore.bak.dart"
|
|
17
15
|
$output > "./dart/bin/ahqstore.dart"
|
|
16
|
+
|
|
17
|
+
# Add CHANGELOG.md
|
|
18
|
+
$changelog = Get-Content "./dart/CHANGELOG.md"
|
|
19
|
+
|
|
20
|
+
"## $version
|
|
21
|
+
|
|
22
|
+
Please refer to https://github.com/ahqstore/cli/releases/tag/$version for changelog
|
|
23
|
+
|
|
24
|
+
$changelog" > "./dart/CHANGELOG.md"
|