@sigil-engine/core 0.6.1 → 0.8.0

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.
@@ -1,4 +1,4 @@
1
1
 
2
- > @sigil-engine/core@0.6.1 build /Users/riomyers/sigil/packages/core
2
+ > @sigil-engine/core@0.7.0 build /Users/riomyers/sigil/packages/core
3
3
  > tsc
4
4
 
@@ -1,18 +1,18 @@
1
1
 
2
- > @sigil-engine/core@0.6.0 test /Users/riomyers/sigil/packages/core
2
+ > @sigil-engine/core@0.7.0 test /Users/riomyers/sigil/packages/core
3
3
  > vitest run
4
4
 
5
5
 
6
6
  RUN v3.2.4 /Users/riomyers/sigil/packages/core
7
7
 
8
- ✓ tests/schema.test.ts (7 tests) 4ms
9
- ✓ tests/plugin.test.ts (7 tests) 3ms
10
- ✓ tests/cache.test.ts (3 tests) 3ms
8
+ ✓ tests/schema.test.ts (7 tests) 8ms
11
9
  ✓ tests/diff.test.ts (11 tests) 5ms
12
- ✓ tests/serialize.test.ts (5 tests) 45ms
10
+ ✓ tests/plugin.test.ts (7 tests) 4ms
11
+ ✓ tests/cache.test.ts (3 tests) 4ms
12
+ ✓ tests/serialize.test.ts (5 tests) 61ms
13
13
 
14
14
  Test Files 5 passed (5)
15
15
  Tests 33 passed (33)
16
- Start at 03:47:07
17
- Duration 653ms (transform 156ms, setup 0ms, collect 278ms, tests 60ms, environment 2ms, prepare 532ms)
16
+ Start at 11:13:00
17
+ Duration 918ms (transform 423ms, setup 0ms, collect 747ms, tests 82ms, environment 1ms, prepare 642ms)
18
18
 
@@ -1,4 +1,4 @@
1
1
 
2
- > @sigil-engine/core@0.6.0 typecheck /Users/riomyers/sigil/packages/core
2
+ > @sigil-engine/core@0.7.0 typecheck /Users/riomyers/sigil/packages/core
3
3
  > tsc --noEmit
4
4
 
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Rio Myers
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sigil-engine/core",
3
- "version": "0.6.1",
3
+ "version": "0.8.0",
4
4
  "description": "Language-agnostic schema, plugin system, and diff engine for structured codebase context",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -11,14 +11,6 @@
11
11
  "types": "./dist/index.d.ts"
12
12
  }
13
13
  },
14
- "scripts": {
15
- "build": "tsc",
16
- "dev": "tsc --watch",
17
- "clean": "rm -rf dist",
18
- "typecheck": "tsc --noEmit",
19
- "test": "vitest run",
20
- "test:watch": "vitest"
21
- },
22
14
  "dependencies": {
23
15
  "yaml": "^2.7.0",
24
16
  "glob": "^11.0.0"
@@ -31,5 +23,13 @@
31
23
  "license": "MIT",
32
24
  "engines": {
33
25
  "node": ">=18.0.0"
26
+ },
27
+ "scripts": {
28
+ "build": "tsc",
29
+ "dev": "tsc --watch",
30
+ "clean": "rm -rf dist",
31
+ "typecheck": "tsc --noEmit",
32
+ "test": "vitest run",
33
+ "test:watch": "vitest"
34
34
  }
35
- }
35
+ }