aboutsummaryrefslogtreecommitdiffstats
path: root/packages/0x.js
diff options
context:
space:
mode:
authorLeonid <logvinov.leon@gmail.com>2018-01-13 09:03:22 +0800
committerGitHub <noreply@github.com>2018-01-13 09:03:22 +0800
commit62e3feeb94bcbd8dd32cba24a0270b4afabce7e8 (patch)
treee8bd328d39709345da4c494e0d1dfd6d506130f8 /packages/0x.js
parenta95049450346459c5e6a211464e94fc4f702cebb (diff)
parent3cb310122e7410a17f9d5131d564e5c332f0aa1c (diff)
downloaddexon-sol-tools-62e3feeb94bcbd8dd32cba24a0270b4afabce7e8.tar
dexon-sol-tools-62e3feeb94bcbd8dd32cba24a0270b4afabce7e8.tar.gz
dexon-sol-tools-62e3feeb94bcbd8dd32cba24a0270b4afabce7e8.tar.bz2
dexon-sol-tools-62e3feeb94bcbd8dd32cba24a0270b4afabce7e8.tar.lz
dexon-sol-tools-62e3feeb94bcbd8dd32cba24a0270b4afabce7e8.tar.xz
dexon-sol-tools-62e3feeb94bcbd8dd32cba24a0270b4afabce7e8.tar.zst
dexon-sol-tools-62e3feeb94bcbd8dd32cba24a0270b4afabce7e8.zip
Merge pull request #319 from 0xProject/feature/final-monorepo
Import last TS packages into the monorepo
Diffstat (limited to 'packages/0x.js')
-rw-r--r--packages/0x.js/scripts/postpublish.js24
-rw-r--r--packages/0x.js/src/globals.d.ts2
-rw-r--r--packages/0x.js/webpack.config.js4
3 files changed, 12 insertions, 18 deletions
diff --git a/packages/0x.js/scripts/postpublish.js b/packages/0x.js/scripts/postpublish.js
index 28484a8bd..1be964478 100644
--- a/packages/0x.js/scripts/postpublish.js
+++ b/packages/0x.js/scripts/postpublish.js
@@ -8,26 +8,21 @@ const S3BucketPath = 's3://0xjs-docs-jsons/';
let tag;
let version;
-postpublish_utils.getLatestTagAndVersionAsync(subPackageName)
+postpublish_utils
+ .getLatestTagAndVersionAsync(subPackageName)
.then(function(result) {
tag = result.tag;
version = result.version;
- const releaseName = postpublish_utils.getReleaseName(subPackageName, version);
- const assets = [
- __dirname + '/../_bundles/index.js',
- __dirname + '/../_bundles/index.min.js',
- ];
- return postpublish_utils.publishReleaseNotes(tag, releaseName, assets);
+ const releaseName = postpublish_utils.getReleaseName(subPackageName, version);
+ const assets = [__dirname + '/../_bundles/index.js', __dirname + '/../_bundles/index.min.js'];
+ return postpublish_utils.publishReleaseNotes(tag, releaseName, assets);
})
.then(function(release) {
console.log('POSTPUBLISH: Release successful, generating docs...');
const jsonFilePath = __dirname + '/../' + postpublish_utils.generatedDocsDirectoryName + '/index.json';
- return execAsync(
- 'JSON_FILE_PATH=' + jsonFilePath + ' PROJECT_DIR=' + __dirname + '/.. yarn docs:json',
- {
- cwd,
- }
- );
+ return execAsync('JSON_FILE_PATH=' + jsonFilePath + ' PROJECT_DIR=' + __dirname + '/.. yarn docs:json', {
+ cwd,
+ });
})
.then(function(result) {
if (result.stderr !== '') {
@@ -39,6 +34,7 @@ postpublish_utils.getLatestTagAndVersionAsync(subPackageName)
return execAsync('S3_URL=' + s3Url + ' yarn upload_docs_json', {
cwd,
});
- }).catch (function(err) {
+ })
+ .catch(function(err) {
throw err;
});
diff --git a/packages/0x.js/src/globals.d.ts b/packages/0x.js/src/globals.d.ts
index dc2b02305..ff8e00b69 100644
--- a/packages/0x.js/src/globals.d.ts
+++ b/packages/0x.js/src/globals.d.ts
@@ -1,5 +1,3 @@
-/// <reference types='chai-typescript-typings' />
-/// <reference types='chai-as-promised-typescript-typings' />
declare module 'web3_beta';
declare module 'chai-bignumber';
declare module 'dirty-chai';
diff --git a/packages/0x.js/webpack.config.js b/packages/0x.js/webpack.config.js
index 61a7e4196..2c1fe81a7 100644
--- a/packages/0x.js/webpack.config.js
+++ b/packages/0x.js/webpack.config.js
@@ -7,10 +7,10 @@ const path = require('path');
const production = process.env.NODE_ENV === 'production';
let entry = {
- 'index': './src/index.ts',
+ index: './src/index.ts',
};
if (production) {
- entry = _.assign({}, entry, {'index.min': './src/index.ts'});
+ entry = _.assign({}, entry, { 'index.min': './src/index.ts' });
}
module.exports = {