@contractkit/plugin-csharp 0.1.0 → 0.1.2

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.
@@ -5,9 +5,9 @@ $ tsup src/index.ts --format esm --sourcemap --dts && tsc --emitDeclarationOnly
5
5
  CLI tsup v8.5.1
6
6
  CLI Target: esnext
7
7
  ESM Build start
8
- ESM dist/index.js 93.08 KB
9
- ESM dist/index.js.map 198.91 KB
10
- ESM ⚡️ Build success in 293ms
8
+ ESM dist/index.js 86.93 KB
9
+ ESM dist/index.js.map 187.54 KB
10
+ ESM ⚡️ Build success in 141ms
11
11
  DTS Build start
12
- DTS ⚡️ Build success in 6492ms
12
+ DTS ⚡️ Build success in 6474ms
13
13
  DTS dist/index.d.ts 1.50 KB
@@ -3,18 +3,18 @@ $ vitest run --coverage
3
3
   RUN  v4.1.5 /home/runner/work/ContractKit/ContractKit/packages/plugin-csharp
4
4
  Coverage enabled with v8
5
5
 
6
- ✓ tests/codegen-client.test.ts (26 tests) 213ms
7
- ✓ tests/index.test.ts (10 tests) 175ms
8
- ✓ tests/codegen-models.test.ts (63 tests) 246ms
9
- ✓ tests/runtime.test.ts (14 tests) 47ms
10
- ✓ tests/naming.test.ts (19 tests) 45ms
11
- ✓ tests/scaffold.test.ts (5 tests) 37ms
12
- ✓ tests/hoist.test.ts (10 tests) 38ms
6
+ ✓ tests/codegen-client.test.ts (26 tests) 231ms
7
+ ✓ tests/codegen-models.test.ts (63 tests) 272ms
8
+ ✓ tests/index.test.ts (10 tests) 212ms
9
+ ✓ tests/runtime.test.ts (14 tests) 67ms
10
+ ✓ tests/naming.test.ts (19 tests) 76ms
11
+ ✓ tests/scaffold.test.ts (5 tests) 28ms
12
+ ✓ tests/hoist.test.ts (10 tests) 61ms
13
13
 
14
14
   Test Files  7 passed (7)
15
15
   Tests  147 passed (147)
16
-  Start at  17:49:55
17
-  Duration  12.67s (transform 6.76s, setup 0ms, import 21.88s, tests 802ms, environment 1ms)
16
+  Start at  13:40:51
17
+  Duration  12.55s (transform 6.16s, setup 0ms, import 20.87s, tests 948ms, environment 18ms)
18
18
 
19
19
   % Coverage report from v8
20
20
  -------------------|---------|----------|---------|---------|-------------------
package/CHANGELOG.md CHANGED
@@ -1,5 +1,24 @@
1
1
  # @contractkit/plugin-csharp
2
2
 
3
+ ## 0.1.2
4
+
5
+ ### Patch Changes
6
+
7
+ - b0f3778: Published builds no longer wrap every function in a `__name()` call, so a bundler can drop the
8
+ exports it does not use. The shared tsconfig enabled `emitDecoratorMetadata`, which made tsup compile
9
+ through swc with `keepNames` forced on, and nothing in the repo uses decorators. `@contractkit/core`
10
+ shrinks by about 7%, and anything that bundles it, the VS Code extension included, no longer
11
+ carries core functions it never calls.
12
+ - Updated dependencies [b0f3778]
13
+ - @contractkit/core@0.30.1
14
+
15
+ ## 0.1.1
16
+
17
+ ### Patch Changes
18
+
19
+ - Updated dependencies [17f4261]
20
+ - @contractkit/core@0.30.0
21
+
3
22
  ## 0.1.0
4
23
 
5
24
  ### Minor Changes