chore: remove ability to publish on npm

This commit is contained in:
Tom Keller
2022-10-15 18:39:09 -07:00
parent 15adc6ff52
commit 8eb36bfcf2
6 changed files with 4 additions and 26 deletions
+3
View File
@@ -115,6 +115,7 @@ const project = new GitHubActionTypeScriptProject({
codeCov: false,
libdir: 'build',
entrypoint: 'build/index.js',
npmignoreEnabled: false,
tsconfig: {
compilerOptions: {
declaration: true,
@@ -218,6 +219,8 @@ if (packageJson) {
packageJson.addOverride('jest.globals', undefined);
// The entrypoint property is supposed to manage this but it doesn't work
packageJson.addOverride('main', 'build/index.js');
// We don't want to publish this to NPM.
packageJson.addOverride('private', true);
}
project.synth();