diff --git a/demos/ago-node-cli/README.md b/demos/ago-node-cli/README.md index efde3d7ff1..b8adc6aea8 100644 --- a/demos/ago-node-cli/README.md +++ b/demos/ago-node-cli/README.md @@ -13,7 +13,7 @@ Like all the other demo apps, run `npm run bootstrap` from the root. ### Running If you use this demo as a starting point for your own command line package, you would publish it to npm, then on the target systems run `npm install `, and it would be available as a command. -But, this is demo code, and thus the package is not "installed" via `npm install ...`, before we can call it as `ago ` we need to run `npm link` in the `/demos/node-cli` folder. After you do that, the command should work. +But, this is demo code, and thus the package is not "installed" via `npm install ...`, before we can call it as `ago ` we need to run `npm link` in the `/demos/ago-node-cli` folder. After you do that, the command should work. Here is a post with information on creating node command line tools: [A Guide to Creating a NodeJs Command](https://x-team.com/blog/a-guide-to-creating-a-nodejs-command/) diff --git a/demos/geocoder-browser/index.html b/demos/geocoder-browser/index.html index ea9e603ffd..59217d4ec8 100644 --- a/demos/geocoder-browser/index.html +++ b/demos/geocoder-browser/index.html @@ -16,28 +16,28 @@

get to geocodin!

- +

- +

- +

- +

- Sign In
+ Sign In

- +

@@ -118,7 +118,7 @@

get to geocodin!

"OBJECTID": 2, "SingleLine": "1 World Way Los Angeles 90045" }]; - arcgisRest.bulkGeocode(addresses, { authentication: auth }) + arcgisRest.bulkGeocode({ authentication: auth, addresses }) .then((response) => { console.log("bulkGeocode", response); }) diff --git a/rollup.config.umd.js b/rollup.config.umd.js index 9b13f46d05..d174419401 100644 --- a/rollup.config.umd.js +++ b/rollup.config.umd.js @@ -54,6 +54,7 @@ export default { context: "window", extend: true, // causes this module to extend the global specified by `moduleName` moduleName, + external: packageNames, globals, plugins: [ typescript(),