jsii-srcmak 0.1.913 → 0.1.915

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.gitattributes CHANGED
@@ -1,4 +1,4 @@
1
- # ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen".
1
+ # ~~ Generated by projen. To modify, edit .projenrc.ts and run "npx projen".
2
2
 
3
3
  *.snap linguist-generated
4
4
  /.eslintrc.json linguist-generated
package/.projenrc.ts ADDED
@@ -0,0 +1,46 @@
1
+ import { CdklabsTypeScriptProject } from 'cdklabs-projen-project-types';
2
+
3
+ const project = new CdklabsTypeScriptProject({
4
+ name: 'jsii-srcmak',
5
+ projenrcTs: true,
6
+ private: false,
7
+ setNodeEngineVersion: false,
8
+ workflowNodeVersion: '16.x',
9
+ description: 'generate source code in multiple languages from typescript',
10
+ repository: 'https://github.com/aws/jsii-srcmak.git',
11
+ stability: 'experimental',
12
+ defaultReleaseBranch: 'main',
13
+
14
+ bin: {
15
+ 'jsii-srcmak': 'bin/jsii-srcmak',
16
+ },
17
+
18
+ devDeps: [
19
+ '@types/ncp',
20
+ '@types/fs-extra@^8',
21
+ 'constructs',
22
+ 'cdklabs-projen-project-types',
23
+ ],
24
+
25
+ deps: [
26
+ 'jsii',
27
+ 'jsii-pacmak',
28
+ 'fs-extra',
29
+ 'ncp',
30
+ 'yargs',
31
+ ],
32
+
33
+ releaseToNpm: true,
34
+
35
+ // superchain is needed to ensure jsii-pacmak has everything it needs
36
+ workflowContainerImage: 'jsii/superchain:1-buster-slim-node16',
37
+ autoApproveOptions: {
38
+ allowedUsernames: ['cdklabs-automation'],
39
+ secret: 'GITHUB_TOKEN',
40
+ },
41
+ autoApproveUpgrades: true,
42
+ });
43
+
44
+ project.package.addPackageResolutions('jackspeak@2.0.3');
45
+
46
+ project.synth();
package/package.json CHANGED
@@ -42,8 +42,8 @@
42
42
  "@types/node": "^14",
43
43
  "@typescript-eslint/eslint-plugin": "^5",
44
44
  "@typescript-eslint/parser": "^5",
45
- "cdklabs-projen-project-types": "^0.1.117",
46
- "constructs": "^3.4.313",
45
+ "cdklabs-projen-project-types": "^0.1.123",
46
+ "constructs": "^3.4.317",
47
47
  "eslint": "^8",
48
48
  "eslint-import-resolver-node": "^0.3.7",
49
49
  "eslint-import-resolver-typescript": "^2.7.1",
@@ -51,21 +51,25 @@
51
51
  "jest": "^27",
52
52
  "jest-junit": "^15",
53
53
  "npm-check-updates": "^16",
54
- "projen": "^0.71.81",
54
+ "projen": "^0.71.82",
55
55
  "standard-version": "^9",
56
56
  "ts-jest": "^27",
57
+ "ts-node": "^10.9.1",
57
58
  "typescript": "^4.9.5"
58
59
  },
59
60
  "dependencies": {
60
61
  "fs-extra": "^9.1.0",
61
- "jsii": "~5.0.10",
62
+ "jsii": "~5.1.1",
62
63
  "jsii-pacmak": "^1.82.0",
63
64
  "ncp": "^2.0.0",
64
65
  "yargs": "^15.4.1"
65
66
  },
67
+ "resolutions": {
68
+ "jackspeak": "2.0.3"
69
+ },
66
70
  "main": "lib/index.js",
67
71
  "license": "Apache-2.0",
68
- "version": "0.1.913",
72
+ "version": "0.1.915",
69
73
  "jest": {
70
74
  "testMatch": [
71
75
  "<rootDir>/src/**/__tests__/**/*.ts?(x)",
@@ -107,5 +111,5 @@
107
111
  }
108
112
  },
109
113
  "types": "lib/index.d.ts",
110
- "//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"npx projen\"."
114
+ "//": "~~ Generated by projen. To modify, edit .projenrc.ts and run \"npx projen\"."
111
115
  }