Skip to content

Commit

Permalink
chore: fix ci (#1569)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsherret authored Aug 25, 2024
1 parent 69f674d commit ccf1bd5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion packages/bootstrap/scripts/buildDeno.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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}`,
Expand All @@ -30,7 +31,7 @@ fileSystem.writeFileSync(
`${destPath}/../deno.json`,
JSON.stringify(
{
"workspaces": [
"workspace": [
"./bootstrap",
"./common",
"./ts-morph",
Expand Down
1 change: 1 addition & 0 deletions packages/common/scripts/buildDeno.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
3 changes: 2 additions & 1 deletion packages/ts-morph/scripts/buildDeno.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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}`,
Expand All @@ -31,7 +32,7 @@ fileSystem.writeFileSync(
`${destPath}/../deno.json`,
JSON.stringify(
{
"workspaces": [
"workspace": [
"./bootstrap",
"./common",
"./ts-morph",
Expand Down

0 comments on commit ccf1bd5

Please sign in to comment.