Skip to content

Instantly share code, notes, and snippets.

@Umkus
Last active May 24, 2021 16:14
Show Gist options
  • Save Umkus/1658b584c057412dc2418124d22c60d8 to your computer and use it in GitHub Desktop.
Save Umkus/1658b584c057412dc2418124d22c60d8 to your computer and use it in GitHub Desktop.
Initial .projenrc.js
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