diff --git a/.projenrc.js b/.projenrc.js index b37c745..b87ca8e 100644 --- a/.projenrc.js +++ b/.projenrc.js @@ -1,4 +1,4 @@ -const { AwsCdkConstructLibrary } = require('projen'); +const { AwsCdkConstructLibrary, NpmAccess } = require('projen'); const project = new AwsCdkConstructLibrary({ author: 'NomadBlacky', @@ -52,7 +52,7 @@ const project = new AwsCdkConstructLibrary({ // licensed: true, /* Indicates if a license should be added. */ // maxNodeVersion: undefined, /* Minimum node.js version to require via `engines` (inclusive). */ // minNodeVersion: undefined, /* Minimum Node.js version to require via package.json `engines` (inclusive). */ - // npmAccess: undefined, /* Access level of the npm package. */ + npmAccess: NpmAccess.PUBLIC, // npmDistTag: 'latest', /* Tags can be used to provide an alias instead of version numbers. */ // npmRegistryUrl: 'https://registry.npmjs.org', /* The base URL of the npm package registry. */ // npmTaskExecution: NpmTaskExecution.PROJEN, /* Determines how tasks are executed when invoked as npm scripts (yarn/npm run xyz). */