aboutsummaryrefslogtreecommitdiffstats
path: root/packages
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2017-11-16 05:47:35 +0800
committerFabio Berger <me@fabioberger.com>2017-11-16 05:47:35 +0800
commit9a57f71ee6fd7aef73811c18e71179e5dc94a417 (patch)
tree40319d6e8322171d879fb215adfce33e8f750b69 /packages
parent827c2457772bd2203307d87f864214c370383807 (diff)
downloaddexon-sol-tools-9a57f71ee6fd7aef73811c18e71179e5dc94a417.tar
dexon-sol-tools-9a57f71ee6fd7aef73811c18e71179e5dc94a417.tar.gz
dexon-sol-tools-9a57f71ee6fd7aef73811c18e71179e5dc94a417.tar.bz2
dexon-sol-tools-9a57f71ee6fd7aef73811c18e71179e5dc94a417.tar.lz
dexon-sol-tools-9a57f71ee6fd7aef73811c18e71179e5dc94a417.tar.xz
dexon-sol-tools-9a57f71ee6fd7aef73811c18e71179e5dc94a417.tar.zst
dexon-sol-tools-9a57f71ee6fd7aef73811c18e71179e5dc94a417.zip
improve script
Diffstat (limited to 'packages')
-rw-r--r--packages/0x.js/package.json6
-rw-r--r--packages/0x.js/scripts/postpublish.js7
2 files changed, 4 insertions, 9 deletions
diff --git a/packages/0x.js/package.json b/packages/0x.js/package.json
index d09396a84..61039a8c0 100644
--- a/packages/0x.js/package.json
+++ b/packages/0x.js/package.json
@@ -14,7 +14,6 @@
"scripts": {
"prebuild": "npm run clean",
"build": "run-p build:umd:prod build:commonjs; exit 0;",
- "upload_docs_json": "aws s3 cp docs/index.json $S3_URL --profile 0xproject --grants read=uri=http://acs.amazonaws.com/groups/global/AllUsers --content-type aplication/json",
"lint": "tslint src/**/*.ts test/**/*.ts",
"test:circleci": "run-s test:coverage report_test_coverage; if [ $CIRCLE_BRANCH = \"development\" ]; then yarn test:umd; fi",
"test": "run-s clean test:commonjs",
@@ -22,9 +21,6 @@
"test:coverage": "nyc npm run test --all",
"report_test_coverage": "nyc report --reporter=text-lcov | coveralls",
"update_contracts": "for i in ${npm_package_config_artifacts}; do copyfiles -u 4 ../contracts/build/contracts/$i.json ../0x.js/src/artifacts; done;",
- "docs:json": "typedoc --excludePrivate --excludeExternals --target ES5 --json docs/index.json .",
- "docs:generate": "typedoc --out docs .",
- "docs:open": "opn docs/index.html",
"clean": "shx rm -rf _bundles lib test_temp",
"build:umd:dev": "webpack",
"build:umd:prod": "NODE_ENV=production webpack",
@@ -99,7 +95,7 @@
"find-versions": "^2.0.0",
"js-sha3": "^0.6.1",
"lodash": "^4.17.4",
- "publish-release": "^1.3.3",
+ "publish-release": "0xproject/publish-release",
"uuid": "^3.1.0",
"web3": "^0.20.0"
}
diff --git a/packages/0x.js/scripts/postpublish.js b/packages/0x.js/scripts/postpublish.js
index deedee74c..b30c7eb3e 100644
--- a/packages/0x.js/scripts/postpublish.js
+++ b/packages/0x.js/scripts/postpublish.js
@@ -28,12 +28,12 @@ getLatestTagAndVersionAsync(subPackageName)
prerelease: false,
reuseRelease: true,
reuseDraftOnly: false,
- assets: ['_bundles/index.js', '_bundles/index.min.js'],
+ assets: [__dirname + '/../_bundles/index.js', __dirname + '/../_bundles/index.min.js'],
});
})
.then(function(release) {
console.log('POSTPUBLISH: Release successful, generating docs...');
- return execAsync('yarn docs:json');
+ return execAsync('typedoc --excludePrivate --excludeExternals --target ES5 --json ' + __dirname + '/../docs/index.json ' + __dirname + '/..');
})
.then(function(result) {
if (result.stderr !== '') {
@@ -41,13 +41,12 @@ getLatestTagAndVersionAsync(subPackageName)
}
console.log('POSTPUBLISH: Doc generation successful, uploading docs...');
const s3Url = 's3://0xjs-docs-jsons/v' + version +'.json';
- return execAsync('S3_URL=' + s3Url + ' yarn upload_docs_json');
+ return execAsync('aws s3 cp ' + __dirname + '/../docs/index.json ' + s3Url + ' --profile 0xproject --grants read=uri=http://acs.amazonaws.com/groups/global/AllUsers --content-type aplication/json');
});
function getLatestTagAndVersionAsync(subPackageName) {
const subPackagePrefix = subPackageName + '@';
const gitTagsCommand = 'git tags -l "' + subPackagePrefix + '*"';
- console.log(gitTagsCommand);
return execAsync(gitTagsCommand)
.then(function(result) {
if (result.stderr !== '') {