-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.projenrc.ts
More file actions
36 lines (34 loc) · 1017 Bytes
/
Copy path.projenrc.ts
File metadata and controls
36 lines (34 loc) · 1017 Bytes
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
30
31
32
33
34
35
36
import { typescript } from 'projen';
import { NpmAccess } from 'projen/lib/javascript';
const majorVersion = 1;
const project = new typescript.TypeScriptProject({
defaultReleaseBranch: 'main',
name: '@rlmartin/config-loader',
projenrcTs: true,
releaseToNpm: true,
npmAccess: NpmAccess.PUBLIC,
projenVersion: '^0',
npmTrustedPublishing: true,
repository: 'https://github.com/rlmartin/config-loader',
majorVersion,
releaseBranches: {
dev: { prerelease: 'dev', npmDistTag: 'dev', majorVersion },
},
depsUpgradeOptions: {
workflowOptions: {
branches: ['main'],
},
},
deps: [
'@aws-sdk/client-secrets-manager@~3',
'@aws-sdk/client-ssm@~3',
'@aws-sdk/util-arn-parser@~3',
'@types/aws-lambda@~8',
],
devDeps: [
'aws-sdk-client-mock@~2',
],
// description: undefined, /* The description is just a string that helps people understand the purpose of the package. */
// packageName: undefined, /* The "name" in package.json. */
});
project.synth();