Last active
May 25, 2021 06:55
-
-
Save Umkus/bb21a8bdc75b717e18b642c85e4e8fd2 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
const { TypeScriptProject } = require('projen'); | |
const project = new TypeScriptProject({ | |
defaultReleaseBranch: 'main', | |
name: 'projen', | |
// deps: [], /* Runtime dependencies of this module. */ | |
// description: undefined, /* The description is just a string that helps people understand the purpose of the package. */ | |
// devDeps: [], /* Build dependencies for this module. */ | |
// packageName: undefined, /* The "name" in package.json. */ | |
// projectType: ProjectType.UNKNOWN, /* Which type of project this is (library/app). */ | |
// releaseWorkflow: undefined, /* Define a GitHub workflow for releasing from "main" when new versions are bumped. */ | |
}); | |
project.synth(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment