@anyakichi/cdk-rsync-backup 0.1.0 → 0.1.1

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.
@@ -0,0 +1,18 @@
1
+ name: Publish Package to npmjs
2
+ on:
3
+ release:
4
+ types: [created]
5
+ jobs:
6
+ build:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v3
10
+ - uses: actions/setup-node@v3
11
+ with:
12
+ node-version: "16.x"
13
+ registry-url: "https://registry.npmjs.org"
14
+ - run: npm install
15
+ - run: npm run build
16
+ - run: npm publish --access public
17
+ env:
18
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@anyakichi/cdk-rsync-backup",
3
3
  "description": "AWS CDK L3 construct for cloud backup system with rsync",
4
- "version": "0.1.0",
4
+ "version": "0.1.1",
5
5
  "author": "INAJIMA Daisuke <inajima@gmail.com>",
6
6
  "scripts": {
7
7
  "build": "tsc",
@@ -12,8 +12,7 @@
12
12
  "types": "lib/index.d.ts",
13
13
  "main": "lib/index.js",
14
14
  "dependencies": {
15
- "cdk-ec2-key-pair": "^3.3.1",
16
- "prettier": "^2.7.1"
15
+ "cdk-ec2-key-pair": "^3.3.1"
17
16
  },
18
17
  "peerDependencies": {
19
18
  "aws-cdk-lib": "2.42.1",
@@ -27,11 +26,17 @@
27
26
  "aws-cdk-lib": "2.42.1",
28
27
  "constructs": "^10.0.0",
29
28
  "jest": "^27.5.1",
29
+ "prettier": "^2.7.1",
30
30
  "prettier-plugin-fixpack": "^0.1.0",
31
31
  "ts-jest": "^27.1.4",
32
32
  "typescript": "~3.9.7"
33
33
  },
34
34
  "homepage": "https://github.com/anyakichi/cdk-rsync-backup",
35
35
  "repository": "https://github.com/anyakichi/cdk-rsync-backup",
36
- "license": "MIT"
36
+ "license": "MIT",
37
+ "keywords": [
38
+ "backup",
39
+ "cdk",
40
+ "rsync"
41
+ ]
37
42
  }