deesse 0.0.20 → 0.0.22

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/dist/index.d.mts CHANGED
@@ -7,6 +7,6 @@ type Config = {
7
7
  auth: AuthConfig;
8
8
  };
9
9
 
10
- declare const buildConfig: (config: Config) => void;
10
+ declare const buildConfig: (config: Config) => Config;
11
11
 
12
- export { buildConfig };
12
+ export { type AdminConfig, type AuthConfig, type Config, buildConfig };
package/dist/index.d.ts CHANGED
@@ -7,6 +7,6 @@ type Config = {
7
7
  auth: AuthConfig;
8
8
  };
9
9
 
10
- declare const buildConfig: (config: Config) => void;
10
+ declare const buildConfig: (config: Config) => Config;
11
11
 
12
- export { buildConfig };
12
+ export { type AdminConfig, type AuthConfig, type Config, buildConfig };
package/dist/index.js CHANGED
@@ -26,6 +26,7 @@ module.exports = __toCommonJS(index_exports);
26
26
 
27
27
  // src/config/build.ts
28
28
  var buildConfig = (config) => {
29
+ return config;
29
30
  };
30
31
  // Annotate the CommonJS export names for ESM import in node:
31
32
  0 && (module.exports = {
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/index.ts","../src/config/build.ts"],"sourcesContent":["export * from './config';\r\n","import { Config } from \"./types\";\r\n\r\n\r\nexport const buildConfig = (config: Config) => {}\r\n\r\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACGO,IAAM,cAAc,CAAC,WAAmB;AAAC;","names":[]}
1
+ {"version":3,"sources":["../src/index.ts","../src/config/build.ts"],"sourcesContent":["export * from './config';\r\n","import { Config } from \"./types\";\n\n\nexport const buildConfig = (config: Config): Config => {\n return config;\n};\n\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACGO,IAAM,cAAc,CAAC,WAA2B;AACrD,SAAO;AACT;","names":[]}
package/dist/index.mjs CHANGED
@@ -1,5 +1,6 @@
1
1
  // src/config/build.ts
2
2
  var buildConfig = (config) => {
3
+ return config;
3
4
  };
4
5
  export {
5
6
  buildConfig
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/config/build.ts"],"sourcesContent":["import { Config } from \"./types\";\r\n\r\n\r\nexport const buildConfig = (config: Config) => {}\r\n\r\n"],"mappings":";AAGO,IAAM,cAAc,CAAC,WAAmB;AAAC;","names":[]}
1
+ {"version":3,"sources":["../src/config/build.ts"],"sourcesContent":["import { Config } from \"./types\";\n\n\nexport const buildConfig = (config: Config): Config => {\n return config;\n};\n\n"],"mappings":";AAGO,IAAM,cAAc,CAAC,WAA2B;AACrD,SAAO;AACT;","names":[]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "deesse",
3
- "version": "0.0.20",
3
+ "version": "0.0.22",
4
4
  "description": "The fullstack nextjs framework",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",