@hs-x/codegen 0.2.6 → 0.2.7
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.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { AccountId, AppEventDeclaration, AppObjectAssociationDeclaration, AppObjectDeclaration, CardDefinition, DeployId, ProjectId, ProjectManifest, WorkerManifest } from '@hs-x/types';
|
|
2
|
-
export declare const CODEGEN_VERSION = "0.2.
|
|
2
|
+
export declare const CODEGEN_VERSION = "0.2.7";
|
|
3
3
|
export type { CapabilityManifest, ProjectManifest, WorkerManifest } from '@hs-x/types';
|
|
4
4
|
export interface GenerateProjectArtifactsOptions {
|
|
5
5
|
readonly root: string;
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { mkdir, writeFile } from 'node:fs/promises';
|
|
2
2
|
import { join } from 'node:path';
|
|
3
|
-
export const CODEGEN_VERSION = '0.2.
|
|
3
|
+
export const CODEGEN_VERSION = '0.2.7';
|
|
4
4
|
export async function generateProjectArtifacts(options) {
|
|
5
5
|
const manifest = {
|
|
6
6
|
generatedAt: new Date().toISOString(),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hs-x/codegen",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.7",
|
|
4
4
|
"description": "HS-X codegen — .hs-x/refs stubs for card↔backend, portal schema typing.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
"clean": "tsc -b --clean"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@hs-x/runtime": "0.2.
|
|
24
|
-
"@hs-x/types": "0.2.
|
|
23
|
+
"@hs-x/runtime": "0.2.7",
|
|
24
|
+
"@hs-x/types": "0.2.7"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@hs-x/fixtures": "0.1.0",
|