File tree 11 files changed +251
-11953
lines changed
11 files changed +251
-11953
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 0.1.3 (2020-12-23)
4
+
5
+ * Update repo configuration
6
+
3
7
## 0.1.2 (2020-12-23)
4
8
5
9
* Fix nested single quotes in values
Original file line number Diff line number Diff line change 1
1
{
2
2
"npmClient" : " yarn" ,
3
3
"useWorkspaces" : true ,
4
- "version" : " 0.1.2 "
4
+ "version" : " 0.1.3 "
5
5
}
Original file line number Diff line number Diff line change 1
- const { TypeScriptLibraryProject, Semver } = require ( 'projen' ) ;
1
+ const { TypeScriptLibraryProject } = require ( 'projen' ) ;
2
2
const common = require ( '../projen-common' ) ;
3
3
4
4
const project = new TypeScriptLibraryProject ( {
@@ -9,18 +9,18 @@ const project = new TypeScriptLibraryProject({
9
9
bin : {
10
10
cdkactions : 'bin/cdkactions'
11
11
} ,
12
- jsiiVersion : Semver . caret ( common . versions . jsii ) ,
13
- dependencies : {
14
- "cdkactions" : Semver . pinned ( ' 0.0.0' ) ,
15
- "constructs" : Semver . caret ( common . versions . constructs ) ,
16
- "sscaff" : Semver . caret ( '1.2.0' ) ,
17
- "yaml" : Semver . caret ( '1.10.0' ) ,
18
- "yargs" : Semver . caret ( '16.1.0' ) ,
19
- "fs-extra" : Semver . caret ( '9.0.1' ) ,
20
- } ,
21
- devDependencies : {
22
- "@types/fs-extra" : Semver . caret ( '8.1.0' ) ,
23
- } ,
12
+
13
+ deps : [
14
+ "cdkactions@^ 0.0.0" ,
15
+ "constructs" ,
16
+ "sscaff" ,
17
+ "yaml" ,
18
+ "yargs" ,
19
+ "fs-extra" ,
20
+ ] ,
21
+ devDeps : [
22
+ "@types/fs-extra"
23
+ ] ,
24
24
} ) ;
25
25
26
26
common . fixup ( project ) ;
Original file line number Diff line number Diff line change 30
30
"organization" : false
31
31
},
32
32
"devDependencies" : {
33
- "@types/fs-extra" : " ^8.1.0 " ,
33
+ "@types/fs-extra" : " ^9.0.6 " ,
34
34
"@types/jest" : " ^26.0.7" ,
35
- "@types/node" : " ^10.17 .0" ,
35
+ "@types/node" : " ^12.0 .0" ,
36
36
"@typescript-eslint/eslint-plugin" : " ^4.3.0" ,
37
37
"@typescript-eslint/parser" : " ^4.3.0" ,
38
- "eslint" : " ^7.12.1 " ,
38
+ "eslint" : " ^7.16.0 " ,
39
39
"eslint-import-resolver-node" : " ^0.3.4" ,
40
40
"eslint-import-resolver-typescript" : " ^2.3.0" ,
41
41
"eslint-plugin-import" : " ^2.22.1" ,
48
48
},
49
49
"peerDependencies" : {},
50
50
"dependencies" : {
51
- "cdkactions" : " 0.0.0" ,
52
- "constructs" : " ^3.2.3 " ,
51
+ "cdkactions" : " ^ 0.0.0" ,
52
+ "constructs" : " ^5.0.0 " ,
53
53
"fs-extra" : " ^9.0.1" ,
54
54
"sscaff" : " ^1.2.0" ,
55
55
"yaml" : " ^1.10.0" ,
56
- "yargs" : " ^16.1 .0"
56
+ "yargs" : " ^16.2 .0"
57
57
},
58
58
"bundledDependencies" : [],
59
59
"keywords" : [
62
62
" constructs" ,
63
63
" github"
64
64
],
65
+ "engines" : {
66
+ "node" : " >= 12.0.0"
67
+ },
65
68
"main" : " lib/index.js" ,
66
69
"license" : " Apache-2.0" ,
67
70
"start" : {
You can’t perform that action at this time.
0 commit comments