Skip to content

Commit

Permalink
Merge pull request #560 from Esri/fix/559
Browse files Browse the repository at this point in the history
fix(try): try an anonymous request before throwing an auth error
  • Loading branch information
jgravois committed May 6, 2019
2 parents 230e189 + c0dad41 commit 6a24b02
Show file tree
Hide file tree
Showing 9 changed files with 132 additions and 83 deletions.
2 changes: 1 addition & 1 deletion demos/tree-shaking-rollup/README.md
Expand Up @@ -4,6 +4,6 @@ This demo shows how to have rollup [tree shake](https://rollupjs.org/guide/en#tr

1. Make sure you run `npm run bootstrap` in the root folder to setup the dependencies
1. cd into `/demos/tree-shaking-rollup/`
1. Run `npm run build`
1. Run `npm run build:app`


2 changes: 1 addition & 1 deletion demos/tree-shaking-rollup/package.json
Expand Up @@ -5,7 +5,7 @@
"description": "",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup -c"
"build:app": "rollup -c"
},
"keywords": [],
"author": "",
Expand Down
2 changes: 1 addition & 1 deletion demos/tree-shaking-webpack/README.md
Expand Up @@ -4,6 +4,6 @@ This demo shows how to have webpack [tree shake](https://rollupjs.org/guide/en#t

1. Make sure you run `npm run bootstrap` in the root folder to setup the dependencies
1. cd into `/demos/tree-shaking-webpack/`
1. Run `npm run build`
1. Run `npm run build:app`


2 changes: 1 addition & 1 deletion demos/tree-shaking-webpack/package.json
Expand Up @@ -5,7 +5,7 @@
"description": "",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack"
"build:app": "webpack"
},
"keywords": [],
"author": "",
Expand Down
2 changes: 1 addition & 1 deletion demos/vue/package.json
Expand Up @@ -7,7 +7,7 @@
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"build:app": "vue-cli-service build",
"lint": "vue-cli-service lint",
"start": "npm run serve"
},
Expand Down

0 comments on commit 6a24b02

Please sign in to comment.