Skip to content

Commit

Permalink
Undo inadvertent update of package metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
Rico Huijbers committed May 30, 2018
1 parent eb96a68 commit 252c502
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 7 deletions.
10 changes: 10 additions & 0 deletions packages/docs/build-docs.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
#!/bin/bash
set -euo pipefail

PYTHON_DEPS="$PWD/python-deps"
mkdir -p "${PYTHON_DEPS}"

export PYTHONPATH=${PYTHON_DEPS}/lib/python3.6/site-packages
export PATH=${PYTHON_DEPS}/bin:$PATH

#----------------------------------------------------------------------
# Install python depednencies to a local tree
pip install --ignore-installed --install-option="--prefix=${PYTHON_DEPS}" -r requirements.txt

#----------------------------------------------------------------------
# CONFIG
staging="dist/staging"
Expand Down
18 changes: 11 additions & 7 deletions packages/docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,16 @@
"name": "docs",
"private": true,
"version": "0.6.0",
"description": "Generates the documentation for all packages",
"description": "AWS CDK Documentation",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/awslabs/aws-cdk"
},
"pkglint": {
"ignore": true
},
"scripts": {
"prepare": "/bin/bash ./build-docs.sh"
},
Expand All @@ -17,11 +20,12 @@
"url": "https://aws.amazon.com"
},
"license": "Apache-2.0",
"dependencies": {
},
"devDependencies": {
"jsii-pacmak": "^0.4.0",
"pkgtools": "^0.6.0",
"aws-cdk-all": "^0.6.0"
}
"aws-cdk-all": "^0.6.0",
"pkgtools": "^0.6.0"
},
"keywords": [
"aws",
"cdk"
]
}

0 comments on commit 252c502

Please sign in to comment.