@axiom-lattice/cli-a2a 0.1.2 → 0.1.4

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/.eslintrc.json ADDED
@@ -0,0 +1,22 @@
1
+ {
2
+ "root": true,
3
+ "env": {
4
+ "node": true,
5
+ "es2021": true
6
+ },
7
+ "extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
8
+ "parser": "@typescript-eslint/parser",
9
+ "parserOptions": {
10
+ "ecmaVersion": 12,
11
+ "sourceType": "module"
12
+ },
13
+ "plugins": ["@typescript-eslint"],
14
+ "rules": {
15
+ "indent": "off",
16
+ "linebreak-style": ["warn", "unix"],
17
+ "semi": ["warn", "always"],
18
+ "no-unused-vars": "off",
19
+ "@typescript-eslint/no-unused-vars": ["warn"],
20
+ "@typescript-eslint/no-explicit-any": "off"
21
+ }
22
+ }
@@ -1,5 +1,5 @@
1
1
 
2
- > @axiom-lattice/cli-a2a@0.1.2 build /home/runner/work/agentic/agentic/packages/cli-a2a
2
+ > @axiom-lattice/cli-a2a@0.1.4 build /home/runner/work/agentic/agentic/packages/cli-a2a
3
3
  > tsup src/index.ts src/cli.ts --format cjs,esm --dts --clean --sourcemap
4
4
 
5
5
  CLI Building entry: src/cli.ts, src/index.ts
@@ -9,11 +9,6 @@
9
9
  CLI Cleaning output folder
10
10
  CJS Build start
11
11
  ESM Build start
12
- CJS dist/cli.js 56.81 KB
13
- CJS dist/index.js 32.87 KB
14
- CJS dist/cli.js.map 104.01 KB
15
- CJS dist/index.js.map 67.18 KB
16
- CJS ⚡️ Build success in 302ms
17
12
  ESM dist/cli.mjs 11.29 KB
18
13
  ESM dist/index.mjs 824.00 B
19
14
  ESM dist/chunk-G7AGL2QA.mjs 10.48 KB
@@ -42,9 +37,14 @@
42
37
  ESM dist/chunk-LXL47XMZ.mjs.map 3.54 KB
43
38
  ESM dist/bridge-7ZUDKCZT.mjs.map 16.70 KB
44
39
  ESM dist/chunk-VZEH3EPJ.mjs.map 3.18 KB
45
- ESM ⚡️ Build success in 312ms
40
+ ESM ⚡️ Build success in 402ms
41
+ CJS dist/cli.js 56.81 KB
42
+ CJS dist/index.js 32.87 KB
43
+ CJS dist/cli.js.map 104.01 KB
44
+ CJS dist/index.js.map 67.18 KB
45
+ CJS ⚡️ Build success in 432ms
46
46
  DTS Build start
47
- DTS ⚡️ Build success in 13441ms
47
+ DTS ⚡️ Build success in 12730ms
48
48
  DTS dist/cli.d.ts 20.00 B
49
49
  DTS dist/index.d.ts 9.50 KB
50
50
  DTS dist/cli.d.mts 20.00 B
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @axiom-lattice/cli-a2a
2
2
 
3
+ ## 0.1.4
4
+
5
+ ### Patch Changes
6
+
7
+ - 4db8e10: lint issue
8
+
9
+ ## 0.1.3
10
+
11
+ ### Patch Changes
12
+
13
+ - 0c99a06: big changes
14
+
3
15
  ## 0.1.2
4
16
 
5
17
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@axiom-lattice/cli-a2a",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",
@@ -55,7 +55,7 @@
55
55
  "build": "tsup src/index.ts src/cli.ts --format cjs,esm --dts --clean --sourcemap",
56
56
  "start": "node dist/cli.js",
57
57
  "dev": "tsup src/index.ts src/cli.ts --format cjs,esm --dts --watch --sourcemap",
58
- "lint": "tsc --noEmit",
58
+ "lint": "eslint src && tsc --noEmit",
59
59
  "test": "jest",
60
60
  "test:watch": "jest --watch",
61
61
  "test:coverage": "jest --coverage"