Skip to content

Instantly share code, notes, and snippets.

@Umkus
Last active May 25, 2021 06:55
Show Gist options
  • Save Umkus/bb21a8bdc75b717e18b642c85e4e8fd2 to your computer and use it in GitHub Desktop.
Save Umkus/bb21a8bdc75b717e18b642c85e4e8fd2 to your computer and use it in GitHub Desktop.
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