Skip to content

Commit

Permalink
chore: set stability to experimental by default (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
xiehan authored Aug 29, 2023
1 parent 016d6f5 commit e91c42a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .projenrc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

// import { snakeCase, pascalCase } from "change-case";
import { cdktf } from "projen";
import { Stability } from "projen/lib/cdk";
import { NpmAccess, UpgradeDependenciesSchedule } from "projen/lib/javascript";
import { AutoApprove } from "./projenrc/auto-approve";
import { Automerge } from "./projenrc/automerge";
Expand Down Expand Up @@ -50,7 +51,8 @@ const project = new cdktf.ConstructLibraryCdktf({
name: "team-tf-cdk",
email: "[email protected]",
},
npmAccess: NpmAccess.PUBLIC,
stability: Stability.EXPERIMENTAL,
npmAccess: NpmAccess.RESTRICTED, // change this to PUBLIC to publish to NPM
releaseToNpm: false, // you probably want to remove this line, assuming you want to publish to NPM
// Uncomment the following depending on which package manager(s) you'd like to publish to
// publishToPypi: {
Expand Down
5 changes: 1 addition & 4 deletions package.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit e91c42a

Please sign in to comment.