-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: support for packages with multi
bin
entry-points (#661)
* Adding missing `runTypegen` entry for `abi-typegen` tsup configs * Enabling `package.json` “exports” keyword via `tsconfig` “module” config * DRY, fixing exports, standardizing `package.json` for selected packages * Updating broken imports * Including docker images when resetting the local environment * Adding changeset * Editing changeset
- Loading branch information
Showing
8 changed files
with
46 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
"@fuel-ts/abi-typegen": patch | ||
"fuels": patch | ||
"@fuel-ts/versions": patch | ||
--- | ||
|
||
fixing support for packages with multi `bin` entry-points |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,22 +3,26 @@ | |
"version": "0.25.0", | ||
"description": "", | ||
"author": "Fuel Labs <[email protected]> (https://fuel.network/)", | ||
"typedoc": { | ||
"entryPoint": "src/index.ts" | ||
}, | ||
"typedoc": "src/index.ts", | ||
"types": "dist/index.d.ts", | ||
"typings": "dist/index.d.ts", | ||
"main": "src/index.ts", | ||
"bin": "./dist/bin.js", | ||
"bin": { | ||
"fuels": "./dist/bin.js" | ||
}, | ||
"exports": { | ||
".": { | ||
"require": "./dist/index.js", | ||
"default": "./dist/index.mjs" | ||
}, | ||
"./dist/cli": { | ||
"require": "./dist/dist.js", | ||
"default": "./dist/dist.mjs" | ||
} | ||
}, | ||
"publishConfig": { | ||
"main": "dist/index.js", | ||
"module": "dist/index.mjs", | ||
"types": "dist/index.d.ts", | ||
"typings": "dist/index.d.ts", | ||
"exports": { | ||
".": { | ||
"require": "./dist/index.js", | ||
"default": "./dist/index.mjs" | ||
} | ||
} | ||
"module": "dist/index.mjs" | ||
}, | ||
"files": [ | ||
"dist" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,8 @@ | |
"description": "Validates supported versions of the Fuel toolchain", | ||
"author": "Fuel Labs <[email protected]> (https://fuel.network/)", | ||
"typedocMain": "./src/index.ts", | ||
"types": "dist/index.d.ts", | ||
"typings": "dist/index.d.ts", | ||
"main": "src/index.ts", | ||
"bin": { | ||
"fuels-versions": "dist/bin.js" | ||
|
@@ -13,19 +15,14 @@ | |
"require": "./dist/index.js", | ||
"default": "./dist/index.mjs" | ||
}, | ||
"./dist/cli": "./dist/cli.js" | ||
"./cli": { | ||
"require": "./dist/cli.js", | ||
"default": "./dist/cli.mjs" | ||
} | ||
}, | ||
"publishConfig": { | ||
"main": "dist/index.js", | ||
"module": "dist/index.mjs", | ||
"types": "dist/index.d.ts", | ||
"typings": "dist/index.d.ts", | ||
"exports": { | ||
".": { | ||
"require": "./dist/index.js", | ||
"default": "./dist/index.mjs" | ||
} | ||
} | ||
"module": "dist/index.mjs" | ||
}, | ||
"files": [ | ||
"dist" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters