Skip to content

Commit

Permalink
feat(index): added barrel export using index.ts for further more exte…
Browse files Browse the repository at this point in the history
…nsion of the library
  • Loading branch information
Stradivario committed Dec 11, 2021
1 parent 5ca8928 commit 60907ea
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"bin": {
"firelink": "./dist/main.js"
},
"main": "./dist/index.js",
"scripts": {
"build": "npx [email protected] build ./src/main.ts --experimental-scope-hoisting --target node",
"build-binary": "npx gapi build --single-executable && mkdir binaries && npm run copy-binaries",
Expand Down
14 changes: 14 additions & 0 deletions src/helpers/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
export * from './args-extractors';
export * from './build-packages';
export * from './copy-packages';
export * from './copy-recursive';
export * from './exit-handler';
export * from './file-exists';
export * from './modify-json';
export * from './parse-ignore';
export * from './read-excludes';
export * from './read-json';
export * from './revert-json';
export * from './run-command';
export * from './worker';
export * from './write-file-json';
3 changes: 3 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export * from './injection-tokens';
export * from './create-virtual-symlink';
export * from './helpers';

0 comments on commit 60907ea

Please sign in to comment.