klaim 1.0.5 → 1.0.6

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/index.ts CHANGED
@@ -1,5 +1 @@
1
- // src/index.ts
2
-
3
- export function getHello (): string {
4
- return 'Hello, world! ???';
5
- }
1
+ export * from './src';
package/package.json CHANGED
@@ -20,7 +20,7 @@
20
20
  },
21
21
  "homepage": "https://github.com/antharuu/klaim#readme",
22
22
  "type": "module",
23
- "version": "1.0.5",
23
+ "version": "1.0.6",
24
24
  "main": "dist/klaim.cjs.js",
25
25
  "module": "dist/klaim.es.js",
26
26
  "types": "dist/index.d.ts",
@@ -29,7 +29,7 @@
29
29
  "dev": "vite build --watch",
30
30
  "test": "vitest",
31
31
  "lint": "eslint src",
32
- "lint:fix": "eslint src --fix",
32
+ "lint:fix": "eslint src **/*.ts --fix",
33
33
  "release": "dotenv release-it --"
34
34
  },
35
35
  "devDependencies": {
package/src/index.ts CHANGED
@@ -1,4 +1,4 @@
1
- export { Api, type IApi } from "./core/Api";
1
+ export { Api } from "./core/Api";
2
2
  export { Klaim } from "./core/Klaim";
3
3
  export { Registry } from "./core/Registry";
4
- export { type IRoute,Route } from "./core/Route";
4
+ export { Route } from "./core/Route";
package/tsconfig.json CHANGED
@@ -15,6 +15,7 @@
15
15
  "forceConsistentCasingInFileNames": true
16
16
  },
17
17
  "include": [
18
- "src"
18
+ "src",
19
+ "index.ts"
19
20
  ]
20
21
  }
package/vite.config.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import {defineConfig} from 'vite';
2
2
  import {configDefaults} from 'vitest/config';
3
- import * as path from 'path'; // Utilisation de l'importation compatible
3
+ import * as path from 'path';
4
4
 
5
5
  export default defineConfig({
6
6
  build: {