Skip to content

Commit 762a5b8

Browse files
committed
Release 0.1.3
1 parent 7b213e0 commit 762a5b8

File tree

11 files changed

+251
-11953
lines changed

11 files changed

+251
-11953
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 0.1.3 (2020-12-23)
4+
5+
* Update repo configuration
6+
37
## 0.1.2 (2020-12-23)
48

59
* Fix nested single quotes in values

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"npmClient": "yarn",
33
"useWorkspaces": true,
4-
"version": "0.1.2"
4+
"version": "0.1.3"
55
}

packages/cdkactions-cli/.projenrc.js

+13-13
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const { TypeScriptLibraryProject, Semver } = require('projen');
1+
const { TypeScriptLibraryProject } = require('projen');
22
const common = require('../projen-common');
33

44
const project = new TypeScriptLibraryProject({
@@ -9,18 +9,18 @@ const project = new TypeScriptLibraryProject({
99
bin: {
1010
cdkactions: 'bin/cdkactions'
1111
},
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+
],
2424
});
2525

2626
common.fixup(project);

packages/cdkactions-cli/package.json

+9-6
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@
3030
"organization": false
3131
},
3232
"devDependencies": {
33-
"@types/fs-extra": "^8.1.0",
33+
"@types/fs-extra": "^9.0.6",
3434
"@types/jest": "^26.0.7",
35-
"@types/node": "^10.17.0",
35+
"@types/node": "^12.0.0",
3636
"@typescript-eslint/eslint-plugin": "^4.3.0",
3737
"@typescript-eslint/parser": "^4.3.0",
38-
"eslint": "^7.12.1",
38+
"eslint": "^7.16.0",
3939
"eslint-import-resolver-node": "^0.3.4",
4040
"eslint-import-resolver-typescript": "^2.3.0",
4141
"eslint-plugin-import": "^2.22.1",
@@ -48,12 +48,12 @@
4848
},
4949
"peerDependencies": {},
5050
"dependencies": {
51-
"cdkactions": "0.0.0",
52-
"constructs": "^3.2.3",
51+
"cdkactions": "^0.0.0",
52+
"constructs": "^5.0.0",
5353
"fs-extra": "^9.0.1",
5454
"sscaff": "^1.2.0",
5555
"yaml": "^1.10.0",
56-
"yargs": "^16.1.0"
56+
"yargs": "^16.2.0"
5757
},
5858
"bundledDependencies": [],
5959
"keywords": [
@@ -62,6 +62,9 @@
6262
"constructs",
6363
"github"
6464
],
65+
"engines": {
66+
"node": ">= 12.0.0"
67+
},
6568
"main": "lib/index.js",
6669
"license": "Apache-2.0",
6770
"start": {

0 commit comments

Comments
 (0)