Skip to content

Commit

Permalink
fix appveryor bug in bitshares-ui
Browse files Browse the repository at this point in the history
  • Loading branch information
xiangxn committed Jan 21, 2022
1 parent 6e44084 commit a86692b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,4 @@
npm-debug.log
node_modules
dist
es
build
es
2 changes: 2 additions & 0 deletions build/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*
!.gitignore
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,13 @@
"test:ecc": "cross-env BABEL_ENV=test mocha --require @babel/register ./test/ecc --recursive --watch",
"test:serializer": "cross-env BABEL_ENV=test mocha --require @babel/register ./test/serializer --recursive",
"test:watch": "yarn test -- --watch",
"clean": "rimraf dist build es",
"clean": "rimraf dist es && rimraf build/*",
"prebuild": "yarn run clean",
"build": "cross-env BABEL_ENV=cjs babel lib -d dist",
"webpack": "webpack --config webpack.config.js",
"build-es": "cross-env BABEL_ENV=es babel lib -d es",
"postbuild": "yarn run browserify && yarn run build-es && yarn run webpack",
"build:watch": "babel lib -d dist --watch",
"prebrowserify": "mkdirp build",
"browserify": "cross-env NODE_ENV=production browserify --full-paths false dist/browser.js --standalone bitshares_js -o build/bitsharesjs.js -d",
"postbrowserify": "cross-env NODE_ENV=production minify build/bitsharesjs.js --mangle --outFile build/bitsharesjs.min.js",
"precommit": "pretty-quick --staged && yarn run test",
Expand Down

0 comments on commit a86692b

Please sign in to comment.