as-test 0.4.1 → 0.4.3

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,14 @@
1
1
  # Change Log
2
2
 
3
+ ## 2025-05-29 - v0.4.3
4
+
5
+ - deps: add json-as to peer dependencies as `*`
6
+
7
+ ## 2025-05-28 - v0.4.2
8
+
9
+ - deps: update json-as to `v1.1.11`
10
+ - deps: make json-as a peer dependency
11
+
3
12
  ## 2025-03-12 - v0.4.1
4
13
 
5
14
  - deps: update json-as to `v1.0.1`
package/README.md CHANGED
@@ -6,7 +6,7 @@
6
6
  ██ ██ ██ ██ ██ ██ ██
7
7
  ██ ██ ███████ ██ ███████ ███████ ██
8
8
  </span>
9
- AssemblyScript - v0.4.1
9
+ AssemblyScript - v0.4.3
10
10
  </pre>
11
11
  </h5>
12
12
 
@@ -26,6 +26,7 @@ A lightweight testing framework for AssemblyScript.
26
26
 
27
27
  ```bash
28
28
  npm install as-test
29
+ npm intall json-as
29
30
  ```
30
31
 
31
32
  Initialize your test setup with:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "as-test",
3
- "version": "0.4.1",
3
+ "version": "0.4.3",
4
4
  "description": "Testing framework for AssemblyScript. Compatible with WASI or Bindings ",
5
5
  "types": "assembly/index.ts",
6
6
  "author": "Jairus Tanaka",
@@ -31,9 +31,16 @@
31
31
  "chalk": "^5.4.1",
32
32
  "glob": "^11.0.1",
33
33
  "gradient-string": "^3.0.0",
34
- "json-as": "^1.0.1",
35
34
  "typer-diff": "^1.1.1"
36
35
  },
36
+ "peerDependencies": {
37
+ "json-as": "*"
38
+ },
39
+ "peerDependenciesMeta": {
40
+ "json-as": {
41
+ "optional": true
42
+ }
43
+ },
37
44
  "repository": {
38
45
  "type": "git",
39
46
  "url": "git+https://github.com/JairusSW/as-test.git"
@@ -1,2 +0,0 @@
1
- # Prettier friendly markdownlint config (all formatting rules disabled)
2
- extends: markdownlint/style/prettier
@@ -1,7 +0,0 @@
1
- rules:
2
- quoted-strings:
3
- required: only-when-needed
4
- extra-allowed: ["{|}"]
5
- key-duplicates: {}
6
- octal-values:
7
- forbid-implicit-octal: true
package/.trunk/trunk.yaml DELETED
@@ -1,34 +0,0 @@
1
- # This file controls the behavior of Trunk: https://docs.trunk.io/cli
2
- # To learn more about the format of this file, see https://docs.trunk.io/reference/trunk-yaml
3
- version: 0.1
4
- cli:
5
- version: 1.22.10
6
- # Trunk provides extensibility via plugins. (https://docs.trunk.io/plugins)
7
- plugins:
8
- sources:
9
- - id: trunk
10
- ref: v1.6.7
11
- uri: https://github.com/trunk-io/plugins
12
- # Many linters and tools depend on runtimes - configure them here. (https://docs.trunk.io/runtimes)
13
- runtimes:
14
- enabled:
15
- - node@18.20.5
16
- - python@3.10.8
17
- # This is the section where you manage your linters. (https://docs.trunk.io/check/configuration)
18
- lint:
19
- enabled:
20
- - actionlint@1.7.7
21
- - checkov@3.2.382
22
- - git-diff-check
23
- - markdownlint@0.44.0
24
- - oxipng@9.1.4
25
- - prettier@3.5.3
26
- - trufflehog@3.88.16
27
- - yamllint@1.36.0
28
- actions:
29
- disabled:
30
- - trunk-announce
31
- - trunk-check-pre-push
32
- - trunk-fmt-pre-commit
33
- enabled:
34
- - trunk-upgrade-available