bun-router 0.7.4-experimental.11 → 0.7.4-experimental.12

Sign up to get free protection for your applications and to get access to all the features.
package/index.ts CHANGED
@@ -1,3 +1,4 @@
1
1
  export * from './lib/router/router';
2
2
  export * from './lib/fs/fsys';
3
3
  export * from './lib/logger/logger';
4
+ export * from './lib/router/router.d';
@@ -8,7 +8,7 @@ _ _
8
8
  |___|___|_|_| |_| |___|___|_| |___|_|
9
9
 
10
10
  `;
11
- const VERSION = '0.7.4-experimental.11';
11
+ const VERSION = '0.7.4-experimental.12';
12
12
  const Logger = (enableFileLogging: boolean) => {
13
13
  const file = Bun.file('bun-router.log');
14
14
  const writer = enableFileLogging ? file.writer() : null;
package/package.json CHANGED
@@ -14,10 +14,11 @@
14
14
  "peerDependencies": {
15
15
  "typescript": "^5.0.0"
16
16
  },
17
- "version": "0.7.4-experimental.11",
17
+ "version": "0.7.4-experimental.12",
18
18
  "dependencies": {
19
19
  "eslint-plugin-react-hooks": "^4.6.0",
20
20
  "react": "^18.2.0",
21
21
  "react-dom": "^18.2.0"
22
- }
22
+ },
23
+ "types": "./lib/router.d.ts"
23
24
  }