Skip to content

Commit

Permalink
Add in the missing dependency, adjust find command" (#256)
Browse files Browse the repository at this point in the history
Signed-off-by: Matthew B White <whitemat@uk.ibm.com>
  • Loading branch information
mbwhite authored Mar 8, 2021
1 parent b1bb93c commit b1991a6
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 17 deletions.
2 changes: 1 addition & 1 deletion ci/templates/nightly-version-update.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ steps:
- script: |
set -ev
export RELEASE_VERSION=${VERSION}-unstable.$(Date:yyyyMMdd)
find . \(-wholename "./apis/**/package.json" -or -wholename "./libraries/**/package.json" -or -wholename "./test/**/package.json" \) -exec node ci/updatePackageJson.js {} \;
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 {} \;
node common/scripts/install-run-rush.js update
name: UpdateVersionNightlyDrivers
displayName: 'Build data'
Expand Down
35 changes: 19 additions & 16 deletions docs/package.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,21 @@
{
"name": "fabric-shim-docs",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"build": "npm run docs",
"docs": "rimraf ./gen && jsdoc -c ./_jsdoc.json"
},
"devDependencies": {
"ink-docstrap": "^1.3.2",
"jsdoc": "^3.6.3",
"rimraf": "^3.0.0"
},
"keywords": [],
"author": "",
"license": "Apache-2.0"
"name": "fabric-shim-docs",
"version": "2.3.1-unstable",
"description": "",
"private": true,
"scripts": {
"build": "npm run docs",
"docs": "rimraf ./gen && jsdoc -c ./_jsdoc.json"
},
"dependencies": {
"fabric-ledger": "2.3.1-unstable"
},
"devDependencies": {
"ink-docstrap": "^1.3.2",
"jsdoc": "^3.6.3",
"rimraf": "^3.0.0"
},
"keywords": [],
"author": "",
"license": "Apache-2.0"
}

0 comments on commit b1991a6

Please sign in to comment.