Skip to content

Commit db41274

Browse files
author
John Doe
committed
refactor: adjust build target for bin scripts
1 parent d4b6e68 commit db41274

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tools/build-target/src/build-target.plugin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export function createBuildTargetConfig(): TargetConfiguration {
1515
outputPath: '{projectRoot}/dist',
1616
main: '{projectRoot}/src/index.ts',
1717
tsConfig: `{projectRoot}/${TSCONFIG_LIB_FILE}`,
18-
assets: ['{projectRoot}/*.md'],
18+
assets: ['{projectRoot}/*.md', '{projectRoot}/bin/*'],
1919
},
2020
};
2121
}

tools/build-target/src/build-target.plugin.unit.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ describe('createBuildTargetConfig', () => {
1313
outputPath: '{projectRoot}/dist',
1414
main: '{projectRoot}/src/index.ts',
1515
tsConfig: `{projectRoot}/tsconfig.lib.json`,
16-
assets: ['{projectRoot}/*.md'],
16+
assets: ['{projectRoot}/*.md', '{projectRoot}/bin/*'],
1717
},
1818
});
1919
});

0 commit comments

Comments
 (0)