-
Notifications
You must be signed in to change notification settings - Fork 0
/
.projenrc.js
29 lines (25 loc) · 1.1 KB
/
.projenrc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
const pj = require('projen');
const project = new pj.TypeScriptProject({
defaultReleaseBranch: 'main',
name: '@wheatstalk/lit-snip',
description: 'A tool to snip code from code used in README files.',
bin: {
'lit-snip': 'lib/cli.js',
},
releaseEveryCommit: true,
releaseToNpm: true,
npmAccess: pj.NpmAccess.PUBLIC,
projenUpgradeSecret: 'YARN_UPGRADE_TOKEN',
autoApproveUpgrades: true,
autoApproveOptions: {
secret: 'GITHUB_TOKEN',
allowedUsernames: ['github-actions', 'github-actions[bot]', 'misterjoshua'],
},
// 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). */
// release: undefined, /* Add release management to this project. */
});
project.synth();