Skip to content

Commit 8d2d1a3

Browse files
authored
Merge pull request #33 from IBM/minor-fixes
Minor fixes
2 parents 99bc512 + f43d3f8 commit 8d2d1a3

File tree

3 files changed

+11
-13
lines changed

3 files changed

+11
-13
lines changed

.github/workflows/publish-release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ name: publish-release
33
on:
44
workflow_run:
55
workflows: ["create-release"]
6-
branches: [main]
7-
types:
6+
branches: [main-disabled]
7+
types:
88
- completed
99

1010
jobs:

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ typings/
4848

4949
# Optional npm cache directory
5050
.npm
51+
.npmrc
5152

5253
# Optional eslint cache
5354
.eslintcache

package.json

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
{
22
"name": "@ibm-cloud/secrets-manager",
3-
"version": "0.0.1",
4-
"description": "Client library to use the IBM Cloud Secrets Manager",
3+
"version": "0.0.3",
4+
"description": "Client library for IBM Cloud Secrets Manager",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/IBM/secrets-manager-nodejs-sdk"
88
},
99
"keywords": [
1010
"ibm",
11-
"secrets",
1211
"secrets-manager"
1312
],
1413
"author": "IBM Corp.",
@@ -19,22 +18,20 @@
1918
"tslint:check": "tslint -p . -c ./tslint.json",
2019
"lint": "npm run eslint:check && npm run tslint:check",
2120
"lint-fix": "npm run eslint:fix && npm run tslint:fix",
22-
"build": "tsc",
23-
"prepublishOnly": "npm run build",
24-
"postversion": "tsc-publish --no-checks --dry-run",
2521
"jest": "jest",
2622
"test": "npm run build && npm run lint && jest test/",
2723
"test-unit": "npm run build && jest test/unit/",
2824
"test-integration": "npm run build && jest test/integration",
29-
"test-unit-travis": "jest --runInBand test/unit/",
30-
"test-integration-travis": "jest --runInBand --no-colors --testNamePattern='^((?!@slow).)*$' --json test/integration > test-output.log",
3125
"report-coverage": "codecov",
3226
"check-packages": "installed-check -e -d -v",
33-
"publishDist": "cp package.json dist/ && cd dist && npm publish"
27+
"build": "tsc",
28+
"prepublishOnly": "npm run build",
29+
"postversion": "tsc-publish --no-checks --dry-run",
30+
"publishDist": "cp package.json dist/ && cd dist && npm publish --access public"
3431
},
3532
"license": "Apache-2.0",
3633
"engines": {
37-
"node": ">=10.0.0"
34+
"node": ">=12.0.0"
3835
},
3936
"dependencies": {
4037
"@types/node": "^12.0.8",
@@ -68,4 +65,4 @@
6865
],
6966
"testEnvironment": "node"
7067
}
71-
}
68+
}

0 commit comments

Comments
 (0)