-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: set stability to experimental by default (#2)
- Loading branch information
Showing
2 changed files
with
4 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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"; | ||
|
@@ -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: { | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.