kurotako 0.1.0 → 0.2.0
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/CHANGELOG.md +12 -0
- package/dist/bin/tako.js +1 -1
- package/dist/index.cjs +5 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# kurotako
|
|
2
2
|
|
|
3
|
+
## 0.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 489a50d: Re-export `typescriptGenerator` from the umbrella package.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [489a50d]
|
|
12
|
+
- @kurotako/gen-typescript@0.2.0
|
|
13
|
+
- @kurotako/config@0.1.1
|
|
14
|
+
|
|
3
15
|
## 0.1.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
package/dist/bin/tako.js
CHANGED
package/dist/index.cjs
CHANGED
|
@@ -22,14 +22,17 @@ var index_exports = {};
|
|
|
22
22
|
__export(index_exports, {
|
|
23
23
|
defineConfig: () => import_config.defineConfig,
|
|
24
24
|
defineGenerator: () => import_config.defineGenerator,
|
|
25
|
-
defineParser: () => import_config.defineParser
|
|
25
|
+
defineParser: () => import_config.defineParser,
|
|
26
|
+
typescriptGenerator: () => import_gen_typescript.typescriptGenerator
|
|
26
27
|
});
|
|
27
28
|
module.exports = __toCommonJS(index_exports);
|
|
28
29
|
var import_config = require("@kurotako/config");
|
|
30
|
+
var import_gen_typescript = require("@kurotako/gen-typescript");
|
|
29
31
|
// Annotate the CommonJS export names for ESM import in node:
|
|
30
32
|
0 && (module.exports = {
|
|
31
33
|
defineConfig,
|
|
32
34
|
defineGenerator,
|
|
33
|
-
defineParser
|
|
35
|
+
defineParser,
|
|
36
|
+
typescriptGenerator
|
|
34
37
|
});
|
|
35
38
|
//# sourceMappingURL=index.cjs.map
|
package/dist/index.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/index.ts"],"sourcesContent":["/**\n * `kurotako` — the umbrella package. Install this one name to get the `tako`\n * binary and the `defineConfig` helper your `tako.config.ts` imports.\n *\n * Re-exports the config authoring surface of `@kurotako/config`. The CLI's\n * programmatic API (`runCli`, reporters) stays in `@kurotako/cli`; loader\n * internals (`loadConfig`, `TakoConfigSchema`, error classes, `CONFIG_TEMPLATE`)\n * stay in `@kurotako/config` for consumers that depend on it directly.\n *\n * See `backlog/features/meta-package/technical.md`.\n */\n\nexport type * from '@kurotako/config';\nexport { defineConfig, defineGenerator, defineParser } from '@kurotako/config';\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;
|
|
1
|
+
{"version":3,"sources":["../src/index.ts"],"sourcesContent":["/**\n * `kurotako` — the umbrella package. Install this one name to get the `tako`\n * binary and the `defineConfig` helper your `tako.config.ts` imports.\n *\n * Re-exports the config authoring surface of `@kurotako/config` and the shipped\n * `typescriptGenerator`. The CLI's\n * programmatic API (`runCli`, reporters) stays in `@kurotako/cli`; loader\n * internals (`loadConfig`, `TakoConfigSchema`, error classes, `CONFIG_TEMPLATE`)\n * stay in `@kurotako/config` for consumers that depend on it directly.\n *\n * See `backlog/features/meta-package/technical.md`.\n */\n\nexport type * from '@kurotako/config';\nexport { defineConfig, defineGenerator, defineParser } from '@kurotako/config';\nexport { typescriptGenerator } from '@kurotako/gen-typescript';\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAcA,oBAA4D;AAC5D,4BAAoC;","names":[]}
|
package/dist/index.d.cts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
// src/index.ts
|
|
2
2
|
import { defineConfig, defineGenerator, defineParser } from "@kurotako/config";
|
|
3
|
+
import { typescriptGenerator } from "@kurotako/gen-typescript";
|
|
3
4
|
export {
|
|
4
5
|
defineConfig,
|
|
5
6
|
defineGenerator,
|
|
6
|
-
defineParser
|
|
7
|
+
defineParser,
|
|
8
|
+
typescriptGenerator
|
|
7
9
|
};
|
|
8
10
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/index.ts"],"sourcesContent":["/**\n * `kurotako` — the umbrella package. Install this one name to get the `tako`\n * binary and the `defineConfig` helper your `tako.config.ts` imports.\n *\n * Re-exports the config authoring surface of `@kurotako/config`. The CLI's\n * programmatic API (`runCli`, reporters) stays in `@kurotako/cli`; loader\n * internals (`loadConfig`, `TakoConfigSchema`, error classes, `CONFIG_TEMPLATE`)\n * stay in `@kurotako/config` for consumers that depend on it directly.\n *\n * See `backlog/features/meta-package/technical.md`.\n */\n\nexport type * from '@kurotako/config';\nexport { defineConfig, defineGenerator, defineParser } from '@kurotako/config';\n"],"mappings":";
|
|
1
|
+
{"version":3,"sources":["../src/index.ts"],"sourcesContent":["/**\n * `kurotako` — the umbrella package. Install this one name to get the `tako`\n * binary and the `defineConfig` helper your `tako.config.ts` imports.\n *\n * Re-exports the config authoring surface of `@kurotako/config` and the shipped\n * `typescriptGenerator`. The CLI's\n * programmatic API (`runCli`, reporters) stays in `@kurotako/cli`; loader\n * internals (`loadConfig`, `TakoConfigSchema`, error classes, `CONFIG_TEMPLATE`)\n * stay in `@kurotako/config` for consumers that depend on it directly.\n *\n * See `backlog/features/meta-package/technical.md`.\n */\n\nexport type * from '@kurotako/config';\nexport { defineConfig, defineGenerator, defineParser } from '@kurotako/config';\nexport { typescriptGenerator } from '@kurotako/gen-typescript';\n"],"mappings":";AAcA,SAAS,cAAc,iBAAiB,oBAAoB;AAC5D,SAAS,2BAA2B;","names":[]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kurotako",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "kurotako meta-package: installs the tako CLI and re-exports defineConfig under a single name.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"kurotako",
|
|
@@ -52,6 +52,7 @@
|
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"@kurotako/cli": "^0.1.0",
|
|
55
|
-
"@kurotako/config": "^0.1.0"
|
|
55
|
+
"@kurotako/config": "^0.1.0",
|
|
56
|
+
"@kurotako/gen-typescript": "^0.1.0"
|
|
56
57
|
}
|
|
57
58
|
}
|