as-test 1.1.7 → 1.1.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Change Log
2
2
 
3
+ ## 2026-05-18 - v1.1.8
4
+
5
+ - chore: `ast init` now writes `json-as` (`^1.3.6`) into the consumer's `devDependencies` so a fresh project installs everything it needs in one step.
6
+
3
7
  ## 2026-05-18 - v1.1.7
4
8
 
5
9
  ### Modes & CLI
@@ -650,6 +650,9 @@ function applyInit(root, target, example, fuzzExample, force) {
650
650
  if (!devDependencies["as-test"]) {
651
651
  devDependencies["as-test"] = "^" + getCliVersion();
652
652
  }
653
+ if (!hasDependency(pkg, "json-as")) {
654
+ devDependencies["json-as"] = "^1.3.6";
655
+ }
653
656
  if (!hasDependency(pkg, "assemblyscript")) {
654
657
  devDependencies["assemblyscript"] = "^0.28.9";
655
658
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "as-test",
3
- "version": "1.1.7",
3
+ "version": "1.1.8",
4
4
  "author": "Jairus Tanaka",
5
5
  "repository": {
6
6
  "type": "git",