@kispace-io/gs-lib 1.3.8 → 1.3.10

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kispace-io/gs-lib",
3
- "version": "1.3.8",
3
+ "version": "1.3.10",
4
4
  "type": "module",
5
5
  "license": "EPL-2.0",
6
6
  "repository": {
@@ -57,8 +57,8 @@
57
57
  "@types/node": "^24.9.2",
58
58
  "@types/proj4": "^2.5.6",
59
59
  "@types/uuid": "^10.0.0",
60
- "typescript": "~5.9.3",
61
- "vite": "^7.1.12",
60
+ "typescript": "^6.0.0",
61
+ "vite": "^8.0.0",
62
62
  "vite-plugin-dts": "^4.5.4"
63
63
  }
64
64
  }
@@ -160,7 +160,7 @@ export function processHtml(content: string, title: string, appJsFilename?: stri
160
160
  export async function bundleApp(
161
161
  entryPointPath: string,
162
162
  outputDir: string,
163
- gsLibPath: string,
163
+ _gsLibPath: string,
164
164
  fileSys: FileSystem,
165
165
  resolvePlugin: EsbuildPlugin,
166
166
  esbuildInstance: EsbuildInstance,
@@ -334,7 +334,7 @@ export function createFileSystemGsLibCopier(
334
334
  /**
335
335
  * Recursively copy a directory
336
336
  */
337
- async function copyDirectory(fs: FileSystem, src: string, dest: string): Promise<void> {
337
+ async function copyDirectory(fs: FileSystem, _src: string, dest: string): Promise<void> {
338
338
  // This is a simplified version - would need full directory traversal
339
339
  // For now, we'll handle specific known directories
340
340
  await fs.ensureDir(dest)
@@ -363,8 +363,8 @@ export function calculateTotalSteps(
363
363
  /**
364
364
  * Create a standard copyAssets function that works with FileSystem
365
365
  */
366
- export function createCopyAssetsFunction(fs: FileSystem): (fs: FileSystem, outputDir: string, progress?: ProgressCallback) => Promise<void> {
367
- return async (fileSys: FileSystem, outputDir: string, progress?: ProgressCallback) => {
366
+ export function createCopyAssetsFunction(_fs: FileSystem): (fs: FileSystem, outputDir: string, progress?: ProgressCallback) => Promise<void> {
367
+ return async (fileSys: FileSystem, outputDir: string, _progress?: ProgressCallback) => {
368
368
  if (await fileSys.exists('assets')) {
369
369
  await copyDirectory(fileSys, 'assets', `${outputDir}/assets`)
370
370
  }
package/tsconfig.json CHANGED
@@ -2,7 +2,10 @@
2
2
  "compilerOptions": {
3
3
  "target": "ES2022",
4
4
  "module": "ESNext",
5
- "lib": ["ES2022", "DOM"],
5
+ "lib": [
6
+ "ES2022",
7
+ "DOM"
8
+ ],
6
9
  "moduleResolution": "bundler",
7
10
  "noEmit": true,
8
11
  "strict": true,
@@ -12,9 +15,13 @@
12
15
  "sourceMap": true,
13
16
  "experimentalDecorators": true,
14
17
  "useDefineForClassFields": false,
15
- "baseUrl": ".",
16
- "paths": {}
18
+ "paths": {},
19
+ "rootDir": "src",
20
+ "types": [
21
+ "node"
22
+ ]
17
23
  },
18
- "include": ["src/**/*"]
24
+ "include": [
25
+ "src/**/*"
26
+ ]
19
27
  }
20
-