@slidejs/runner 0.1.1 → 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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @slidejs/runner@0.1.1 build /Volumes/ORICO/ws/prj/slidejs/slidejs/packages/@slidejs/runner
2
+ > @slidejs/runner@0.1.2 build /Volumes/ORICO/ws/prj/slidejs/slidejs/packages/@slidejs/runner
3
3
  > vite build
4
4
 
5
5
  vite v5.4.21 building for production...
@@ -13,7 +13,7 @@ dist/index.mjs 6.24 kB │ gzip: 2.32 kB │ map: 14.14 kB
13
13
  [vite:dts] Start rollup declaration files...
14
14
  Analysis will use the bundled TypeScript version 5.4.2
15
15
  *** The target project appears to use TypeScript 5.9.3 which is newer than the bundled compiler engine; consider upgrading API Extractor.
16
- [vite:dts] Declaration files built in 1837ms.
16
+ [vite:dts] Declaration files built in 2514ms.
17
17
 
18
18
  dist/index.cjs 3.85 kB │ gzip: 1.32 kB │ map: 13.30 kB
19
- ✓ built in 1.93s
19
+ ✓ built in 2.70s
@@ -1,14 +1,14 @@
1
1
 
2
- > @slidejs/runner@0.1.1 test /Volumes/ORICO/ws/prj/slidejs/slidejs/packages/@slidejs/runner
2
+ > @slidejs/runner@0.1.2 test /Volumes/ORICO/ws/prj/slidejs/slidejs/packages/@slidejs/runner
3
3
  > vitest run
4
4
 
5
5
 
6
6
  RUN v1.6.1 /Volumes/ORICO/ws/prj/slidejs/slidejs/packages/@slidejs/runner
7
7
 
8
- ✓ src/__tests__/runner.test.ts (28 tests) 61ms
8
+ ✓ src/__tests__/runner.test.ts (28 tests) 88ms
9
9
 
10
10
  Test Files 1 passed (1)
11
11
  Tests 28 passed (28)
12
- Start at 21:49:23
13
- Duration 2.06s (transform 57ms, setup 0ms, collect 61ms, tests 61ms, environment 572ms, prepare 128ms)
12
+ Start at 16:44:06
13
+ Duration 2.26s (transform 101ms, setup 0ms, collect 152ms, tests 88ms, environment 982ms, prepare 111ms)
14
14
 
@@ -1,4 +1,4 @@
1
1
 
2
- > @slidejs/runner@0.1.1 typecheck /Volumes/ORICO/ws/prj/slidejs/slidejs/packages/@slidejs/runner
2
+ > @slidejs/runner@0.1.2 typecheck /Volumes/ORICO/ws/prj/slidejs/slidejs/packages/@slidejs/runner
3
3
  > tsc --noEmit
4
4
 
package/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 slidejs
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.
22
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@slidejs/runner",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "type": "module",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",
@@ -12,16 +12,9 @@
12
12
  "require": "./dist/index.cjs"
13
13
  }
14
14
  },
15
- "scripts": {
16
- "build": "vite build",
17
- "dev": "vite build --watch",
18
- "test": "vitest run",
19
- "test:watch": "vitest",
20
- "typecheck": "tsc --noEmit"
21
- },
22
15
  "dependencies": {
23
- "@slidejs/core": "workspace:*",
24
- "@slidejs/context": "workspace:*"
16
+ "@slidejs/context": "0.1.2",
17
+ "@slidejs/core": "0.1.2"
25
18
  },
26
19
  "devDependencies": {
27
20
  "@types/node": "^20.10.0",
@@ -30,5 +23,15 @@
30
23
  "vite": "^5.0.0",
31
24
  "vite-plugin-dts": "^3.7.0",
32
25
  "vitest": "^1.0.0"
26
+ },
27
+ "publishConfig": {
28
+ "access": "public"
29
+ },
30
+ "scripts": {
31
+ "build": "vite build",
32
+ "dev": "vite build --watch",
33
+ "test": "vitest run",
34
+ "test:watch": "vitest",
35
+ "typecheck": "tsc --noEmit"
33
36
  }
34
- }
37
+ }