Skip to content

Commit b1991a6

Browse files
authored
Add in the missing dependency, adjust find command" (#256)
Signed-off-by: Matthew B White <whitemat@uk.ibm.com>
1 parent b1bb93c commit b1991a6

File tree

2 files changed

+20
-17
lines changed

2 files changed

+20
-17
lines changed

ci/templates/nightly-version-update.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ steps:
22
- script: |
33
set -ev
44
export RELEASE_VERSION=${VERSION}-unstable.$(Date:yyyyMMdd)
5-
find . \(-wholename "./apis/**/package.json" -or -wholename "./libraries/**/package.json" -or -wholename "./test/**/package.json" \) -exec node ci/updatePackageJson.js {} \;
5+
find . \( -wholename "./docs/package.json" -or -wholename "./apis/**/package.json" -or -wholename "./libraries/**/package.json" -or -wholename "./test/**/package.json" \) -exec node ci/updatePackageJson.js {} \;
66
node common/scripts/install-run-rush.js update
77
name: UpdateVersionNightlyDrivers
88
displayName: 'Build data'

docs/package.json

Lines changed: 19 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,21 @@
11
{
2-
"name": "fabric-shim-docs",
3-
"version": "1.0.0",
4-
"description": "",
5-
"private": true,
6-
"scripts": {
7-
"build": "npm run docs",
8-
"docs": "rimraf ./gen && jsdoc -c ./_jsdoc.json"
9-
},
10-
"devDependencies": {
11-
"ink-docstrap": "^1.3.2",
12-
"jsdoc": "^3.6.3",
13-
"rimraf": "^3.0.0"
14-
},
15-
"keywords": [],
16-
"author": "",
17-
"license": "Apache-2.0"
2+
"name": "fabric-shim-docs",
3+
"version": "2.3.1-unstable",
4+
"description": "",
5+
"private": true,
6+
"scripts": {
7+
"build": "npm run docs",
8+
"docs": "rimraf ./gen && jsdoc -c ./_jsdoc.json"
9+
},
10+
"dependencies": {
11+
"fabric-ledger": "2.3.1-unstable"
12+
},
13+
"devDependencies": {
14+
"ink-docstrap": "^1.3.2",
15+
"jsdoc": "^3.6.3",
16+
"rimraf": "^3.0.0"
17+
},
18+
"keywords": [],
19+
"author": "",
20+
"license": "Apache-2.0"
1821
}

0 commit comments

Comments
 (0)