Skip to content

Commit ccf1bd5

Browse files
authored
chore: fix ci (#1569)
1 parent 69f674d commit ccf1bd5

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

packages/bootstrap/scripts/buildDeno.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ fileSystem.writeFileSync(
1717
{
1818
"name": "@ts-morph/bootstrap",
1919
"version": packageJson.version,
20+
"license": "MIT",
2021
"exports": "./mod.ts",
2122
"imports": {
2223
"@ts-morph/common": `jsr:@ts-morph/common@^${commonPackageJson.version}`,
@@ -30,7 +31,7 @@ fileSystem.writeFileSync(
3031
`${destPath}/../deno.json`,
3132
JSON.stringify(
3233
{
33-
"workspaces": [
34+
"workspace": [
3435
"./bootstrap",
3536
"./common",
3637
"./ts-morph",

packages/common/scripts/buildDeno.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ fileSystem.writeFileSync(
6262
{
6363
"name": "@ts-morph/common",
6464
"version": packageJson.version,
65+
"license": "MIT",
6566
"exports": "./mod.ts",
6667
"imports": {
6768
"@std/fs": "jsr:@std/fs@^0.229.3",

packages/ts-morph/scripts/buildDeno.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ fileSystem.writeFileSync(
1717
{
1818
"name": "@ts-morph/ts-morph",
1919
"version": packageJson.version,
20+
"license": "MIT",
2021
"exports": "./mod.ts",
2122
"imports": {
2223
"@ts-morph/common": `jsr:@ts-morph/common@^${commonPackageJson.version}`,
@@ -31,7 +32,7 @@ fileSystem.writeFileSync(
3132
`${destPath}/../deno.json`,
3233
JSON.stringify(
3334
{
34-
"workspaces": [
35+
"workspace": [
3536
"./bootstrap",
3637
"./common",
3738
"./ts-morph",

0 commit comments

Comments
 (0)