Last active
May 24, 2021 16:14
-
-
Save Umkus/1658b584c057412dc2418124d22c60d8 to your computer and use it in GitHub Desktop.
Initial .projenrc.js
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', | |
buildWorkflow: false, | |
releaseWorkflow: false, | |
pullRequestTemplate: false, | |
// 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