Skip to content

Commit 147e479

Browse files
committed
build/ccxt.browser.js → dist/ccxt.browser.js
1 parent 2b95f0e commit 147e479

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ The module entry points are:
161161
- `./python/__init__.py` for the Python pip package
162162
- `./python/async/__init__.py` for the Python 3.5.3+ ccxt.async_support subpackage
163163
- `./ccxt.js` for the Node.js npm package
164-
- `./build/ccxt.browser.js` for the browser bundle
164+
- `./dist/ccxt.browser.js` for the browser bundle
165165
- `./ccxt.php` for PHP
166166

167167
Generated versions and docs are transpiled from the source `ccxt.js` file and files in `./js/` by the `npm run build` command.

ccxt.browser.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* A entry point for the browser bundle version. This gets compiled by:
22
3-
browserify --debug ./ccxt.browser.js > ./build/ccxt.browser.js
3+
browserify --debug ./ccxt.browser.js > ./dist/ccxt.browser.js
44
*/
55

66
window.ccxt = require ('./ccxt')
File renamed without changes.

git-ignore-generated-files.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const log = require ('ololog')
2424

2525
const files = [
2626

27-
'build/ccxt.browser.js',
27+
'dist/ccxt.browser.js',
2828

2929
'python/test/test_decimal_to_precision.py',
3030
'php/test/decimal_to_precision.php',

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "1.18.292",
44
"description": "A JavaScript / Python / PHP cryptocurrency trading library with support for 100+ exchanges",
55
"main": "./ccxt.js",
6-
"unpkg": "build/ccxt.browser.js",
6+
"unpkg": "dist/ccxt.browser.js",
77
"engines": {
88
"node": ">=7.6.0"
99
},
@@ -34,7 +34,7 @@
3434
"check-js-syntax": "eslint 'js/*.js'",
3535
"check-python-syntax": "cd python && tox -e qa && cd ..",
3636
"check-php-syntax": "php -f php/test/syntax.php",
37-
"browserify": "browserify ./ccxt.browser.js > ./build/ccxt.browser.js",
37+
"browserify": "browserify ./ccxt.browser.js > ./dist/ccxt.browser.js",
3838
"pandoc-all": "npm run pandoc-python-readme && npm run pandoc-doc-readme && npm run pandoc-doc-faq && npm run pandoc-doc-manual && npm run pandoc-doc-install && npm run pandoc-doc-exchanges && npm run pandoc-doc-exchanges-by-country",
3939
"pandoc-python-readme": "pandoc --wrap=preserve --columns=10000 --from=markdown --to=rst --output=python/README.rst README.md",
4040
"pandoc-doc-readme": "pandoc --wrap=preserve --columns=10000 --from=markdown --to=rst --output=doc/README.rst README.md",

push.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
LAST_COMMIT_MESSAGE="$(git log --no-merges -1 --pretty=%B)"
44
git config --global user.email "[email protected]"
55
git config --global user.name "Travis CI"
6-
git add --force build/ccxt.browser.js
6+
git add --force dist/ccxt.browser.js
77
git commit -a -m "${COMMIT_MESSAGE}" -m '[ci skip]'
88
git tag -a "${COMMIT_MESSAGE}" -m "${LAST_COMMIT_MESSAGE}" -m "" -m "[ci skip]"
99
git remote remove origin

0 commit comments

Comments
 (0)