From ccf1bd58a522e7b4df179eb89876b86f603afde7 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Sun, 25 Aug 2024 14:52:21 -0400 Subject: [PATCH] chore: fix ci (#1569) --- packages/bootstrap/scripts/buildDeno.ts | 3 ++- packages/common/scripts/buildDeno.ts | 1 + packages/ts-morph/scripts/buildDeno.ts | 3 ++- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/packages/bootstrap/scripts/buildDeno.ts b/packages/bootstrap/scripts/buildDeno.ts index ad0023f4c..16ae804e5 100644 --- a/packages/bootstrap/scripts/buildDeno.ts +++ b/packages/bootstrap/scripts/buildDeno.ts @@ -17,6 +17,7 @@ fileSystem.writeFileSync( { "name": "@ts-morph/bootstrap", "version": packageJson.version, + "license": "MIT", "exports": "./mod.ts", "imports": { "@ts-morph/common": `jsr:@ts-morph/common@^${commonPackageJson.version}`, @@ -30,7 +31,7 @@ fileSystem.writeFileSync( `${destPath}/../deno.json`, JSON.stringify( { - "workspaces": [ + "workspace": [ "./bootstrap", "./common", "./ts-morph", diff --git a/packages/common/scripts/buildDeno.ts b/packages/common/scripts/buildDeno.ts index 7c1975a13..7f11269e1 100644 --- a/packages/common/scripts/buildDeno.ts +++ b/packages/common/scripts/buildDeno.ts @@ -62,6 +62,7 @@ fileSystem.writeFileSync( { "name": "@ts-morph/common", "version": packageJson.version, + "license": "MIT", "exports": "./mod.ts", "imports": { "@std/fs": "jsr:@std/fs@^0.229.3", diff --git a/packages/ts-morph/scripts/buildDeno.ts b/packages/ts-morph/scripts/buildDeno.ts index 4ed65d810..5d9dac81a 100644 --- a/packages/ts-morph/scripts/buildDeno.ts +++ b/packages/ts-morph/scripts/buildDeno.ts @@ -17,6 +17,7 @@ fileSystem.writeFileSync( { "name": "@ts-morph/ts-morph", "version": packageJson.version, + "license": "MIT", "exports": "./mod.ts", "imports": { "@ts-morph/common": `jsr:@ts-morph/common@^${commonPackageJson.version}`, @@ -31,7 +32,7 @@ fileSystem.writeFileSync( `${destPath}/../deno.json`, JSON.stringify( { - "workspaces": [ + "workspace": [ "./bootstrap", "./common", "./ts-morph",