iam4x / pokemongo-webspoof

👾 Play Pokémon Go from your Mac
2.14k stars 228 forks source link

implemented bookmark feature #356

Closed AlmirKadric closed 5 years ago

AlmirKadric commented 8 years ago

Allows you to save, search and select bookmarked coordinates I pulled react-bootstrap as the styles are being used, but the components were not. I also introduced a components folder for custom constructed components, in this case the combobox.

TODO:

MoOx commented 8 years ago

code lgtm. Can you post a screenshot?

bateller commented 8 years ago

Couple things...

Tried pulling this and react-bootstrap requires autocomplete.js, angular, and jquery which I had to install manually (not in package.json).

Secondly running this I received this error:

index.html:1 Uncaught SyntaxError: Unexpected token o in JSON at position 1

I'm new to node... so its quite possible I did something wrong.

AlmirKadric commented 8 years ago

@bateller I'm not sure where you got those dependencies from since I'm not seeing any such error. However if they truly are dependencies they need to be put inside the react-bootstrap package.json file. node or rather so npm will resolved dependencies of dependencies by looking at their package.json. If you can provide me with the error or a screenshot of what got you to think they are dependencies, I'm happy to investigate it for you.

As for your error, thats most curious, mind telling me a bit about your environment? Node version, how you are seeing that error (electron developer console? browser console?) etc. More information would be helpful.

AlmirKadric commented 8 years ago

@MoOx here's the screenshot

screen shot 2016-08-10 at 12 43 45 pm

MoOx commented 8 years ago

When I try your branch I am getting an issue in the electron window:

index.html:1 Uncaught SyntaxError: Unexpected token o in JSON at position 1. Any idea?

❯ node --version v5.12.0 ❯ npm --version 3.8.6

I did run "npm install" & got the new deps.

AlmirKadric commented 8 years ago

@MoOx that's most unusual. I deleted my node_modules folder and did a fresh re-install and everything seems to still work fine.

Did you checkout my branch as was? or did you merge it into an existing branch? Did you try deleting your node_modules folder and doing a fresh dep install? Did you do a electron refresh on the first start up? (electron is started before webpack builds so the first run will probably be using a stale pack) Could I get a screenshot? I might be able to derive what went wrong from this

MoOx commented 8 years ago

I merge your branch into the current master (locally). I didn't do a full reinstall of node_modules I did an refresh electron refresh via "Reload" (I guess cmd+R is the same)?

screen shot 2016-08-11 at 12 39 08

AlmirKadric commented 8 years ago

@MoOx I just tried the following and still didn't see the error:

Do you mind following that exact same process and seeing the results? If there is any part that doesn't make sense, let me know and I'll explain it.

bateller commented 8 years ago

@AlmirKadric Since @MoOx is seeing the same error I am, I figure I'd provide more information to help troubleshoot.

$ node --version

v6.3.1

$ npm --version

3.10.6

I too pulled from main and manually pulled in your branch.

The error was seen the same as @MoOx (in Electron Dev Tools)

AlmirKadric commented 8 years ago

@bateller mind trying the instructions in my last comment? I'm not seeing this, if you still are having issues after that, I'll try re cloning to project.

MoOx commented 8 years ago

@AlmirKadric I tried with a fresh node_modules folder & a merge from current master, exact same issue. So a patch/change in a lib might broke something...

AlmirKadric commented 8 years ago

@MoOx @bateller i just went to the extremes to try and replicate your issue, but no luck. I will post my terminal output in a second so you can see how things went for me. They only suggestion I have to you is for you to check your local repo sanity and check if there is any difference to the upstream remote master.

What I would recommend is that you:

And if all else fails try and just clone directly from my repository. The only answer I can come up with right now is that the master branch you have locally is polluted and not the same as the upstream remote.

AlmirKadric commented 8 years ago
Terminal output ``` $ rm -rf pokemongo-webspoof $ git clone ssh://git@github.com/AlmirKadric/pokemongo-webspoof.git Cloning into 'pokemongo-webspoof'... remote: Counting objects: 491, done. remote: Compressing objects: 100% (43/43), done. remote: Total 491 (delta 10), reused 0 (delta 0), pack-reused 447 Receiving objects: 100% (491/491), 6.59 MiB | 740.00 KiB/s, done. Resolving deltas: 100% (224/224), done. Checking connectivity... done. $ cd pokemongo-webspoof/ $ git status On branch master Your branch is up-to-date with 'origin/master'. nothing to commit, working directory clean $ git branch * master $ git remote -v origin ssh://git@github.com/AlmirKadric/pokemongo-webspoof.git (fetch) origin ssh://git@github.com/AlmirKadric/pokemongo-webspoof.git (push) $ git remote add upstream ssh://git@github.com/iam4x/pokemongo-webspoof.git $ git fetch --all Fetching origin Fetching upstream remote: Counting objects: 45, done. remote: Compressing objects: 100% (39/39), done. remote: Total 45 (delta 23), reused 4 (delta 4), pack-reused 2 Unpacking objects: 100% (45/45), done. From ssh://github.com/iam4x/pokemongo-webspoof * [new branch] master -> upstream/master * [new branch] pokevision -> upstream/pokevision $ git branch * master $ git pull upstream master From ssh://github.com/iam4x/pokemongo-webspoof * branch master -> FETCH_HEAD Updating 0da03a0..755f6db Fast-forward src/models/settings.js | 1 + src/models/user-location.js | 36 ++++++++++++++++++++++++++++++++++-- src/views/map/autopilot.js | 8 ++++++++ src/views/map/boolean-settings.js | 3 ++- src/views/map/controls.js | 18 +++++++++++------- 5 files changed, 56 insertions(+), 10 deletions(-) $ git branch * master $ git diff upstream/master $ npm install . npm WARN deprecated electron@0.4.1: The original electron project has been moved. Visit github.com/logicalparadox/electron for more details. fetchMetadata -> 304 / |################---------------------------------| > fsevents@1.0.14 install /Users/almirkadric/Projects/Other/pokemongo-webspoof/node_modules/fsevents > node-pre-gyp install --fallback-to-build [fsevents] Success: "/Users/almirkadric/Projects/Other/pokemongo-webspoof/node_modules/fsevents/lib/binding/Release/node-v47-darwin-x64/fse.node" already installed Pass --update-binary to reinstall or --build-from-source to recompile > electron-prebuilt@1.3.3 postinstall /Users/almirkadric/Projects/Other/pokemongo-webspoof/node_modules/electron-prebuilt > node install.js pokemongo-webspoof@1.2.0 /Users/almirkadric/Projects/Other/pokemongo-webspoof +-- axios@0.13.1 | `-- follow-redirects@0.0.7 | `-- stream-consume@0.1.0 +-- babel-eslint@6.1.2 | +-- babel-traverse@6.13.0 | | +-- babel-code-frame@6.11.0 | | | `-- js-tokens@2.0.0 | | +-- babel-messages@6.8.0 | | +-- globals@8.18.0 | | `-- invariant@2.2.1 | +-- babel-types@6.13.0 | | `-- to-fast-properties@1.0.2 | +-- babylon@6.8.4 | +-- lodash.assign@4.1.0 | `-- lodash.pickby@4.5.1 +-- babel-loader@6.2.4 | +-- loader-utils@0.2.15 | | +-- big.js@3.1.3 | | +-- emojis-list@2.0.1 | | `-- json5@0.5.0 | +-- mkdirp@0.5.1 | | `-- minimist@0.0.8 | `-- object-assign@4.1.0 +-- babel-plugin-typecheck@3.9.0 | `-- babel-generator@6.11.4 | +-- detect-indent@3.0.1 | | +-- get-stdin@4.0.1 | | `-- repeating@1.1.3 | | `-- is-finite@1.0.1 | `-- source-map@0.5.6 +-- babel-polyfill@6.13.0 | +-- babel-runtime@6.11.6 | | `-- core-js@2.4.1 | +-- core-js@2.4.1 | `-- regenerator-runtime@0.9.5 +-- babel-preset-save@1.1.5 | +-- babel-plugin-add-module-exports@0.1.4 | | `-- babel-template@6.9.0 | +-- babel-plugin-transform-decorators-legacy@1.3.4 | | `-- babel-plugin-syntax-decorators@6.13.0 | +-- babel-plugin-transform-es3-member-expression-literals@6.8.0 | +-- babel-plugin-transform-es3-property-literals@6.8.0 | +-- babel-plugin-transform-jscript@6.8.0 | +-- babel-plugin-transform-proto-to-assign@6.9.0 | +-- babel-preset-es2015@6.13.2 | | +-- babel-plugin-check-es2015-constants@6.8.0 | | +-- babel-plugin-transform-es2015-arrow-functions@6.8.0 | | +-- babel-plugin-transform-es2015-block-scoped-functions@6.8.0 | | +-- babel-plugin-transform-es2015-block-scoping@6.10.1 | | +-- babel-plugin-transform-es2015-classes@6.9.0 | | | +-- babel-helper-define-map@6.9.0 | | | +-- babel-helper-function-name@6.8.0 | | | +-- babel-helper-optimise-call-expression@6.8.0 | | | `-- babel-helper-replace-supers@6.8.0 | | +-- babel-plugin-transform-es2015-computed-properties@6.8.0 | | +-- babel-plugin-transform-es2015-destructuring@6.9.0 | | +-- babel-plugin-transform-es2015-duplicate-keys@6.8.0 | | +-- babel-plugin-transform-es2015-for-of@6.8.0 | | +-- babel-plugin-transform-es2015-function-name@6.9.0 | | +-- babel-plugin-transform-es2015-literals@6.8.0 | | +-- babel-plugin-transform-es2015-modules-amd@6.8.0 | | +-- babel-plugin-transform-es2015-modules-commonjs@6.11.5 | | | `-- babel-plugin-transform-strict-mode@6.11.3 | | +-- babel-plugin-transform-es2015-modules-systemjs@6.12.0 | | | `-- babel-helper-hoist-variables@6.8.0 | | +-- babel-plugin-transform-es2015-modules-umd@6.12.0 | | +-- babel-plugin-transform-es2015-object-super@6.8.0 | | +-- babel-plugin-transform-es2015-parameters@6.11.4 | | | +-- babel-helper-call-delegate@6.8.0 | | | `-- babel-helper-get-function-arity@6.8.0 | | +-- babel-plugin-transform-es2015-shorthand-properties@6.8.0 | | +-- babel-plugin-transform-es2015-spread@6.8.0 | | +-- babel-plugin-transform-es2015-sticky-regex@6.8.0 | | | `-- babel-helper-regex@6.9.0 | | +-- babel-plugin-transform-es2015-template-literals@6.8.0 | | +-- babel-plugin-transform-es2015-typeof-symbol@6.8.0 | | +-- babel-plugin-transform-es2015-unicode-regex@6.11.0 | | | `-- regexpu-core@2.0.0 | | | +-- regenerate@1.3.1 | | | +-- regjsgen@0.2.0 | | | `-- regjsparser@0.1.5 | | | `-- jsesc@0.5.0 | | `-- babel-plugin-transform-regenerator@6.11.4 | | +-- babel-core@6.13.2 | | | +-- babel-helpers@6.8.0 | | | +-- babel-register@6.11.6 | | | | +-- core-js@2.4.1 | | | | +-- home-or-tmp@1.0.0 | | | | | `-- user-home@1.1.1 | | | | `-- source-map-support@0.2.10 | | | | `-- source-map@0.1.32 | | | +-- convert-source-map@1.3.0 | | | +-- json5@0.4.0 | | | +-- shebang-regex@1.0.0 | | | +-- slash@1.0.0 | | | `-- source-map@0.5.6 | | +-- babel-plugin-syntax-async-functions@6.13.0 | | `-- private@0.1.6 | +-- babel-preset-react@6.11.1 | | +-- babel-plugin-syntax-flow@6.13.0 | | +-- babel-plugin-syntax-jsx@6.13.0 | | +-- babel-plugin-transform-flow-strip-types@6.8.0 | | +-- babel-plugin-transform-react-display-name@6.8.0 | | +-- babel-plugin-transform-react-jsx@6.8.0 | | | `-- babel-helper-builder-react-jsx@6.9.0 | | +-- babel-plugin-transform-react-jsx-self@6.11.0 | | `-- babel-plugin-transform-react-jsx-source@6.9.0 | +-- babel-preset-stage-0@6.5.0 | | +-- babel-plugin-transform-do-expressions@6.8.0 | | | `-- babel-plugin-syntax-do-expressions@6.13.0 | | +-- babel-plugin-transform-function-bind@6.8.0 | | | `-- babel-plugin-syntax-function-bind@6.13.0 | | `-- babel-preset-stage-1@6.13.0 | | +-- babel-plugin-transform-class-constructor-call@6.8.0 | | | `-- babel-plugin-syntax-class-constructor-call@6.13.0 | | +-- babel-plugin-transform-export-extensions@6.8.0 | | | `-- babel-plugin-syntax-export-extensions@6.13.0 | | `-- babel-preset-stage-2@6.13.0 | | +-- babel-plugin-transform-class-properties@6.11.5 | | | `-- babel-plugin-syntax-class-properties@6.13.0 | | +-- babel-plugin-transform-decorators@6.13.0 | | | `-- babel-helper-explode-class@6.8.0 | | | `-- babel-helper-bindify-decorators@6.8.0 | | +-- babel-plugin-transform-object-rest-spread@6.8.0 | | | `-- babel-plugin-syntax-object-rest-spread@6.13.0 | | `-- babel-preset-stage-3@6.11.0 | | +-- babel-plugin-syntax-trailing-function-commas@6.13.0 | | +-- babel-plugin-transform-async-to-generator@6.8.0 | | | `-- babel-helper-remap-async-to-generator@6.11.2 | | `-- babel-plugin-transform-exponentiation-operator@6.8.0 | | +-- babel-helper-builder-binary-assignment-operator-visitor@6.8.0 | | | `-- babel-helper-explode-assignable-expression@6.8.0 | | `-- babel-plugin-syntax-exponentiation-operator@6.13.0 | `-- modify-babel-preset@1.2.0 | `-- require-relative@0.8.7 +-- cheerio@0.20.0 | +-- css-select@1.2.0 | | +-- boolbase@1.0.0 | | +-- css-what@2.1.0 | | +-- domutils@1.5.1 | | `-- nth-check@1.0.1 | +-- dom-serializer@0.1.0 | | `-- domelementtype@1.1.3 | +-- entities@1.1.1 | +-- htmlparser2@3.8.3 | | +-- domelementtype@1.3.0 | | +-- domhandler@2.3.0 | | +-- entities@1.0.0 | | `-- readable-stream@1.1.14 | | +-- core-util-is@1.0.2 | | `-- isarray@0.0.1 | +-- jsdom@7.2.2 | | +-- abab@1.0.3 | | +-- acorn@2.7.0 | | +-- acorn-globals@1.0.9 | | +-- cssom@0.3.1 | | +-- cssstyle@0.2.36 | | +-- escodegen@1.8.1 | | | +-- estraverse@1.9.3 | | | `-- source-map@0.2.0 | | | `-- amdefine@1.0.0 | | +-- nwmatcher@1.3.8 | | +-- parse5@1.5.1 | | +-- request@2.74.0 | | | +-- aws-sign2@0.6.0 | | | +-- aws4@1.4.1 | | | +-- bl@1.1.2 | | | | `-- readable-stream@2.0.6 | | | | `-- isarray@1.0.0 | | | +-- caseless@0.11.0 | | | +-- combined-stream@1.0.5 | | | | `-- delayed-stream@1.0.0 | | | +-- extend@3.0.0 | | | +-- forever-agent@0.6.1 | | | +-- form-data@1.0.0-rc4 | | | +-- har-validator@2.0.6 | | | +-- hawk@3.1.3 | | | | +-- boom@2.10.1 | | | | +-- cryptiles@2.0.5 | | | | +-- hoek@2.16.3 | | | | `-- sntp@1.0.9 | | | +-- http-signature@1.1.1 | | | | +-- assert-plus@0.2.0 | | | | +-- jsprim@1.3.0 | | | | | +-- extsprintf@1.0.2 | | | | | +-- json-schema@0.2.2 | | | | | `-- verror@1.3.6 | | | | `-- sshpk@1.9.2 | | | | +-- asn1@0.2.3 | | | | +-- assert-plus@1.0.0 | | | | +-- dashdash@1.14.0 | | | | | `-- assert-plus@1.0.0 | | | | +-- ecc-jsbn@0.1.1 | | | | +-- getpass@0.1.6 | | | | | `-- assert-plus@1.0.0 | | | | +-- jodid25519@1.0.2 | | | | +-- jsbn@0.1.0 | | | | `-- tweetnacl@0.13.3 | | | +-- is-typedarray@1.0.0 | | | +-- isstream@0.1.2 | | | +-- json-stringify-safe@5.0.1 | | | +-- mime-types@2.1.11 | | | | `-- mime-db@1.23.0 | | | +-- node-uuid@1.4.7 | | | +-- oauth-sign@0.8.2 | | | +-- qs@6.2.1 | | | `-- stringstream@0.0.5 | | +-- sax@1.2.1 | | +-- symbol-tree@3.1.4 | | +-- tough-cookie@2.3.1 | | +-- webidl-conversions@2.0.1 | | +-- whatwg-url-compat@0.6.5 | | | `-- tr46@0.0.3 | | `-- xml-name-validator@2.0.1 | `-- lodash@4.14.2 +-- classnames@2.2.5 +-- css-loader@0.23.1 | +-- css-selector-tokenizer@0.5.4 | | +-- cssesc@0.1.0 | | `-- fastparse@1.1.1 | +-- cssnano@3.7.3 | | +-- autoprefixer@6.4.0 | | | +-- browserslist@1.3.5 | | | +-- caniuse-db@1.0.30000520 | | | +-- normalize-range@0.1.2 | | | `-- num2fraction@1.2.2 | | +-- decamelize@1.2.0 | | +-- defined@1.0.0 | | +-- indexes-of@1.0.1 | | +-- postcss-calc@5.3.0 | | | `-- reduce-css-calc@1.2.4 | | | +-- balanced-match@0.1.0 | | | `-- reduce-function-call@1.0.1 | | | `-- balanced-match@0.1.0 | | +-- postcss-colormin@2.2.0 | | | `-- colormin@1.1.1 | | | `-- css-color-names@0.0.4 | | +-- postcss-convert-values@2.4.0 | | +-- postcss-discard-comments@2.0.4 | | +-- postcss-discard-duplicates@2.0.1 | | +-- postcss-discard-empty@2.1.0 | | +-- postcss-discard-overridden@0.1.1 | | +-- postcss-discard-unused@2.2.1 | | | +-- flatten@1.0.2 | | | `-- uniqs@2.0.0 | | +-- postcss-filter-plugins@2.0.1 | | | `-- uniqid@3.1.0 | | | `-- macaddress@0.2.8 | | +-- postcss-merge-idents@2.1.6 | | | `-- has-own@1.0.0 | | +-- postcss-merge-longhand@2.0.1 | | +-- postcss-merge-rules@2.0.10 | | | `-- vendors@1.0.1 | | +-- postcss-minify-font-values@1.0.5 | | +-- postcss-minify-gradients@1.0.3 | | +-- postcss-minify-params@1.0.4 | | | `-- alphanum-sort@1.0.2 | | +-- postcss-minify-selectors@2.0.5 | | | `-- postcss-selector-parser@2.2.0 | | | `-- uniq@1.0.1 | | +-- postcss-normalize-charset@1.1.0 | | +-- postcss-normalize-url@3.0.7 | | | +-- is-absolute-url@2.0.0 | | | `-- normalize-url@1.6.0 | | | +-- prepend-http@1.0.4 | | | +-- query-string@4.2.2 | | | | `-- strict-uri-encode@1.1.0 | | | `-- sort-keys@1.1.2 | | | `-- is-plain-obj@1.1.0 | | +-- postcss-ordered-values@2.2.1 | | +-- postcss-reduce-idents@2.3.0 | | +-- postcss-reduce-initial@1.0.0 | | +-- postcss-reduce-transforms@1.0.3 | | +-- postcss-svgo@2.1.4 | | | +-- is-svg@2.0.1 | | | | `-- html-comment-regex@1.1.1 | | | `-- svgo@0.6.6 | | | +-- coa@1.0.1 | | | +-- colors@1.1.2 | | | +-- csso@2.0.0 | | | | +-- clap@1.1.1 | | | | `-- source-map@0.5.6 | | | `-- whet.extend@0.9.9 | | +-- postcss-unique-selectors@2.0.2 | | `-- postcss-zindex@2.1.1 | +-- lodash.camelcase@3.0.1 | | `-- lodash._createcompounder@3.0.0 | | +-- lodash.deburr@3.2.0 | | | `-- lodash._root@3.0.1 | | `-- lodash.words@3.2.0 | +-- postcss@5.1.2 | | +-- source-map@0.5.6 | | `-- supports-color@3.1.2 | +-- postcss-modules-extract-imports@1.0.1 | +-- postcss-modules-local-by-default@1.1.1 | | `-- css-selector-tokenizer@0.6.0 | | `-- regexpu-core@1.0.0 | +-- postcss-modules-scope@1.0.2 | | `-- css-selector-tokenizer@0.6.0 | | `-- regexpu-core@1.0.0 | +-- postcss-modules-values@1.1.3 | | `-- icss-replace-symbols@1.0.2 | `-- source-list-map@0.1.6 +-- electron@0.4.1 | `-- drip@1.1.0 | `-- tea-concat@0.1.0 +-- electron-debug@1.0.1 | +-- electron-is-dev@0.1.1 | `-- electron-localshortcut@0.6.1 +-- electron-packager@7.5.1 | +-- asar@0.12.1 | | +-- chromium-pickle-js@0.1.0 | | +-- commander@2.9.0 | | | `-- graceful-readlink@1.0.1 | | +-- cuint@0.2.1 | | +-- glob@6.0.4 | | `-- mksnapshot@0.3.0 | | +-- decompress-zip@0.3.0 | | | +-- binary@0.3.0 | | | | +-- buffers@0.1.1 | | | | `-- chainsaw@0.1.0 | | | | `-- traverse@0.3.9 | | | +-- mkpath@0.1.0 | | | +-- nopt@3.0.6 | | | | `-- abbrev@1.0.9 | | | +-- q@1.4.1 | | | `-- touch@0.0.3 | | | `-- nopt@1.0.10 | | +-- fs-extra@0.26.7 | | `-- request@2.55.0 | | +-- aws-sign2@0.5.0 | | +-- bl@0.9.5 | | | `-- readable-stream@1.0.34 | | +-- caseless@0.9.0 | | +-- combined-stream@0.0.7 | | | `-- delayed-stream@0.0.5 | | +-- form-data@0.2.0 | | | `-- async@0.9.2 | | +-- har-validator@1.8.0 | | | `-- bluebird@2.10.2 | | +-- hawk@2.3.1 | | +-- http-signature@0.10.1 | | | +-- asn1@0.1.11 | | | +-- assert-plus@0.1.5 | | | `-- ctype@0.5.3 | | +-- mime-types@2.0.14 | | | `-- mime-db@1.12.0 | | +-- oauth-sign@0.6.0 | | `-- qs@2.4.2 | +-- debug@2.2.0 | | `-- ms@0.7.1 | +-- electron-download@2.1.2 | | +-- home-path@1.0.3 | | +-- mv@2.1.1 | | | `-- ncp@2.0.0 | | +-- nugget@1.6.2 | | | +-- pretty-bytes@1.0.4 | | | | `-- meow@3.7.0 | | | | +-- camelcase-keys@2.1.0 | | | | | `-- camelcase@2.1.1 | | | | +-- loud-rejection@1.6.0 | | | | | +-- currently-unhandled@0.4.1 | | | | | | `-- array-find-index@1.0.1 | | | | | `-- signal-exit@3.0.0 | | | | +-- map-obj@1.0.1 | | | | +-- redent@1.0.0 | | | | | +-- indent-string@2.1.0 | | | | | | `-- repeating@2.0.1 | | | | | `-- strip-indent@1.0.1 | | | | `-- trim-newlines@1.0.0 | | | +-- progress-stream@1.2.0 | | | | +-- speedometer@0.1.4 | | | | `-- through2@0.2.3 | | | | `-- xtend@2.1.2 | | | | `-- object-keys@0.4.0 | | | +-- single-line-log@0.4.1 | | | `-- throttleit@0.0.2 | | +-- path-exists@1.0.0 | | `-- rc@1.1.6 | | +-- deep-extend@0.4.1 | | `-- ini@1.3.4 | +-- electron-osx-sign@0.3.1 | +-- extract-zip@1.5.0 | | +-- debug@0.7.4 | | +-- mkdirp@0.5.0 | | | `-- minimist@0.0.8 | | `-- yauzl@2.4.1 | | `-- fd-slicer@1.0.1 | | `-- pend@1.2.0 | +-- fs-extra@0.30.0 | | +-- graceful-fs@4.1.5 | | +-- jsonfile@2.3.1 | | +-- klaw@1.3.0 | | `-- rimraf@2.4.5 | +-- lodash.get@4.4.1 | +-- minimist@1.2.0 | +-- plist@1.2.0 | | +-- base64-js@0.0.8 | | +-- util-deprecate@1.0.2 | | +-- xmlbuilder@4.0.0 | | | `-- lodash@3.10.1 | | `-- xmldom@0.1.22 | +-- rcedit@0.5.1 | +-- resolve@1.1.7 | `-- run-series@1.1.4 +-- electron-prebuilt@1.3.3 +-- UNMET PEER DEPENDENCY eslint@3.2.2 | +-- chalk@1.1.3 | | +-- ansi-styles@2.2.1 | | +-- escape-string-regexp@1.0.5 | | +-- has-ansi@2.0.0 | | +-- strip-ansi@3.0.1 | | `-- supports-color@2.0.0 | +-- concat-stream@1.5.0 | | +-- inherits@2.0.1 | | +-- readable-stream@2.0.6 | | | +-- isarray@1.0.0 | | | `-- process-nextick-args@1.0.7 | | `-- typedarray@0.0.6 | +-- doctrine@1.2.2 | | +-- esutils@1.1.6 | | `-- isarray@1.0.0 | +-- escope@3.6.0 | | +-- es6-weak-map@2.0.1 | | +-- esrecurse@4.1.0 | | | `-- estraverse@4.1.1 | | `-- estraverse@4.2.0 | +-- espree@3.1.7 | | +-- acorn@3.3.0 | | `-- acorn-jsx@3.0.1 | | `-- acorn@3.3.0 | +-- estraverse@4.2.0 | +-- esutils@2.0.2 | +-- file-entry-cache@1.3.1 | | `-- flat-cache@1.2.1 | | +-- circular-json@0.3.1 | | +-- del@2.2.1 | | | +-- globby@5.0.0 | | | | `-- glob@7.0.5 | | | +-- is-path-cwd@1.0.0 | | | `-- is-path-in-cwd@1.0.0 | | | `-- is-path-inside@1.0.0 | | `-- write@0.2.1 | +-- glob@7.0.5 | | +-- fs.realpath@1.0.0 | | +-- inflight@1.0.5 | | | `-- wrappy@1.0.2 | | `-- once@1.3.3 | +-- globals@9.9.0 | +-- ignore@3.1.3 | +-- imurmurhash@0.1.4 | +-- inquirer@0.12.0 | | +-- ansi-escapes@1.4.0 | | +-- ansi-regex@2.0.0 | | +-- cli-cursor@1.0.2 | | | `-- restore-cursor@1.0.1 | | | +-- exit-hook@1.1.1 | | | `-- onetime@1.1.0 | | +-- cli-width@2.1.0 | | +-- figures@1.7.0 | | +-- readline2@1.0.1 | | | +-- code-point-at@1.0.0 | | | | `-- number-is-nan@1.0.0 | | | +-- is-fullwidth-code-point@1.0.0 | | | `-- mute-stream@0.0.5 | | +-- run-async@0.1.0 | | +-- rx-lite@3.1.2 | | +-- string-width@1.0.1 | | `-- through@2.3.8 | +-- is-my-json-valid@2.13.1 | | +-- generate-function@2.0.0 | | +-- generate-object-property@1.2.0 | | | `-- is-property@1.0.2 | | +-- jsonpointer@2.0.0 | | `-- xtend@4.0.1 | +-- is-resolvable@1.0.0 | | `-- tryit@1.0.2 | +-- js-yaml@3.6.1 | | +-- argparse@1.0.7 | | | `-- sprintf-js@1.0.3 | | `-- esprima@2.7.2 | +-- json-stable-stringify@1.0.1 | | `-- jsonify@0.0.0 | +-- levn@0.3.0 | | +-- prelude-ls@1.1.2 | | `-- type-check@0.3.2 | +-- optionator@0.8.1 | | +-- deep-is@0.1.3 | | +-- fast-levenshtein@1.1.4 | | `-- wordwrap@1.0.0 | +-- path-is-inside@1.0.1 | +-- pluralize@1.2.1 | +-- progress@1.1.8 | +-- require-uncached@1.0.2 | | +-- caller-path@0.1.0 | | | `-- callsites@0.2.0 | | `-- resolve-from@1.0.1 | +-- shelljs@0.6.1 | +-- strip-bom@3.0.0 | +-- strip-json-comments@1.0.4 | +-- table@3.7.8 | | +-- bluebird@3.4.1 | | +-- slice-ansi@0.0.4 | | +-- tv4@1.2.7 | | `-- xregexp@3.1.1 | +-- text-table@0.2.0 | `-- user-home@2.0.0 | `-- os-homedir@1.0.1 +-- eslint-config-airbnb@9.0.1 | +-- UNMET PEER DEPENDENCY eslint@^2.9.0 | `-- eslint-config-airbnb-base@3.0.1 +-- eslint-plugin-import@1.13.0 | +-- builtin-modules@1.1.1 | +-- contains-path@0.1.0 | +-- es6-map@0.1.4 | | +-- d@0.1.1 | | +-- es5-ext@0.10.12 | | +-- es6-iterator@2.0.0 | | +-- es6-symbol@3.1.0 | | `-- event-emitter@0.3.4 | +-- es6-set@0.1.4 | +-- eslint-import-resolver-node@0.2.2 | +-- lodash.cond@4.5.1 | +-- lodash.endswith@4.2.0 | +-- lodash.find@4.5.1 | +-- lodash.findindex@4.5.1 | +-- pkg-dir@1.0.0 | | `-- find-up@1.1.2 | | +-- path-exists@2.1.0 | | `-- pinkie-promise@2.0.1 | | `-- pinkie@2.0.4 | `-- pkg-up@1.0.0 +-- UNMET PEER DEPENDENCY eslint-plugin-jsx-a11y@2.1.0 | +-- damerau-levenshtein@1.0.0 | `-- jsx-ast-utils@1.3.1 +-- eslint-plugin-react@5.2.2 +-- geocoder@0.2.2 | +-- request@2.11.1 | | +-- form-data@0.0.3 | | | +-- async@0.1.9 | | | `-- combined-stream@0.0.3 | | | `-- delayed-stream@0.0.5 | | `-- mime@1.2.7 | +-- underscore@1.3.3 | `-- xml2js@0.2.0 +-- google-map-react@0.16.3 invalid | +-- eventemitter3@1.2.0 | +-- fbjs@0.8.3 | | +-- core-js@1.2.7 | | +-- immutable@3.8.1 | | +-- isomorphic-fetch@2.2.1 | | | +-- node-fetch@1.6.0 | | | | +-- encoding@0.1.12 | | | | | `-- iconv-lite@0.4.13 | | | | `-- is-stream@1.1.0 | | | `-- whatwg-fetch@1.0.0 | | +-- promise@7.1.1 | | | `-- asap@2.0.4 | | `-- ua-parser-js@0.7.10 | +-- point-geometry@0.0.0 | `-- scriptjs@2.5.8 +-- haversine@1.0.0 +-- mobx@2.4.2 +-- mobx-react@3.5.4 | `-- hoist-non-react-statics@1.2.0 +-- places.js@1.4.3 | +-- algoliasearch@3.18.0 | | +-- agentkeepalive@2.2.0 | | +-- debug-ms-fix-yui-compressor@2.2.2-future-reserved-word-fix-ms | | | `-- algolia-ms@0.7.1-fix-future-reserved-words | | +-- envify@3.4.1 | | | `-- jstransform@11.0.3 | | | +-- base62@1.1.1 | | | +-- commoner@0.10.4 | | | | +-- detective@4.3.1 | | | | | `-- acorn@1.2.2 | | | | +-- glob@5.0.15 | | | | `-- recast@0.10.43 | | | | +-- ast-types@0.8.15 | | | | +-- esprima-fb@15001.1001.0-dev-harmony-fb | | | | `-- source-map@0.5.6 | | | +-- esprima-fb@15001.1.0-dev-harmony-fb | | | +-- object-assign@2.1.1 | | | `-- source-map@0.4.4 | | +-- es6-promise@3.2.1 | | +-- foreach@2.0.5 | | +-- global@4.3.0 | | | +-- min-document@2.18.1 | | | | `-- dom-walk@0.1.1 | | | `-- process@0.5.2 | | +-- isarray@1.0.0 | | +-- load-script@1.0.0 | | +-- querystring-es3@0.2.1 | | +-- reduce@1.0.1 | | | `-- object-keys@1.0.11 | | +-- semver@5.3.0 | | `-- tunnel-agent@0.4.3 | +-- UNMET PEER DEPENDENCY angular@< 2 | +-- autocomplete.js@0.21.3 | +-- events@1.1.1 | +-- insert-css@1.0.0 | `-- UNMET PEER DEPENDENCY jquery@>= 1.7 +-- postcss-import@8.1.0 | +-- postcss-value-parser@3.3.0 | `-- read-cache@1.0.0 | `-- pify@2.3.0 +-- postcss-loader@0.9.1 +-- postcss-url@5.1.2 | +-- directory-encoder@0.7.2 | | +-- fs-extra@0.23.1 | | +-- handlebars@1.3.0 | | | +-- optimist@0.3.7 | | | | `-- wordwrap@0.0.3 | | | `-- uglify-js@2.3.6 | | | +-- async@0.2.10 | | | `-- source-map@0.1.43 | | `-- img-stats@0.5.2 | +-- js-base64@2.1.9 | +-- mime@1.3.4 | +-- minimatch@3.0.3 | | `-- brace-expansion@1.1.6 | | +-- balanced-match@0.4.2 | | `-- concat-map@0.0.1 | `-- path-is-absolute@1.0.0 +-- precss@1.4.0 | +-- postcss-advanced-variables@1.2.2 | +-- postcss-atroot@0.1.3 | +-- postcss-color-function@2.0.1 | | +-- css-color-function@1.3.0 | | | +-- balanced-match@0.1.0 | | | +-- color@0.11.3 | | | | +-- color-convert@1.4.0 | | | | `-- color-string@0.3.0 | | | | `-- color-name@1.1.1 | | | +-- debug@0.7.4 | | | `-- rgb@0.1.0 | | `-- postcss-message-helpers@2.0.0 | +-- postcss-custom-media@5.0.1 | +-- postcss-custom-properties@5.0.1 | | `-- balanced-match@0.1.0 | +-- postcss-custom-selectors@3.0.0 | | `-- balanced-match@0.2.1 | +-- postcss-extend@1.0.5 | +-- postcss-media-minmax@2.1.2 | +-- postcss-mixins@2.1.1 | | +-- globby@3.0.1 | | | +-- array-union@1.0.2 | | | | `-- array-uniq@1.0.3 | | | +-- arrify@1.0.1 | | | +-- glob@5.0.15 | | | `-- pinkie-promise@1.0.0 | | | `-- pinkie@1.0.0 | | `-- postcss-simple-vars@1.2.0 | +-- postcss-nested@1.0.0 | +-- postcss-nesting@2.3.1 | +-- postcss-partial-import@1.3.0 | | +-- fs-extra@0.24.0 | | +-- fs-promise@0.3.1 | | | `-- any-promise@0.1.0 | | `-- string-hash@1.1.0 | +-- postcss-property-lookup@1.2.1 | | `-- tcomb@2.7.0 | +-- postcss-selector-matches@2.0.1 | | `-- balanced-match@0.2.1 | `-- postcss-selector-not@2.0.0 | `-- balanced-match@0.2.1 +-- react@15.3.0 | `-- loose-envify@1.2.0 | `-- js-tokens@1.0.3 +-- react-dom@15.3.0 +-- react-s-alert@1.1.4 +-- style-loader@0.13.1 +-- tmp@0.0.28 | `-- os-tmpdir@1.0.1 `-- webpack@2.1.0-beta.20 +-- acorn@3.3.0 +-- async@1.5.2 +-- clone@1.0.2 +-- enhanced-resolve@2.2.2 +-- interpret@1.0.1 +-- loader-runner@2.1.1 +-- memory-fs@0.3.0 | +-- errno@0.1.4 | | `-- prr@0.0.0 | `-- readable-stream@2.1.4 | +-- buffer-shims@1.0.0 | `-- isarray@1.0.0 +-- node-libs-browser@1.0.0 | +-- assert@1.4.1 | +-- browserify-zlib@0.1.4 | | `-- pako@0.2.9 | +-- buffer@4.9.0 | | +-- base64-js@1.1.2 | | +-- ieee754@1.1.6 | | `-- isarray@1.0.0 | +-- console-browserify@1.1.0 | | `-- date-now@0.1.4 | +-- constants-browserify@1.0.0 | +-- crypto-browserify@3.11.0 | | +-- browserify-cipher@1.0.0 | | | +-- browserify-aes@1.0.6 | | | | `-- buffer-xor@1.0.3 | | | +-- browserify-des@1.0.0 | | | | `-- des.js@1.0.0 | | | | `-- minimalistic-assert@1.0.0 | | | `-- evp_bytestokey@1.0.0 | | +-- browserify-sign@4.0.0 | | | +-- bn.js@4.11.6 | | | +-- browserify-rsa@4.0.1 | | | +-- elliptic@6.3.1 | | | | +-- brorand@1.0.5 | | | | `-- hash.js@1.0.3 | | | `-- parse-asn1@5.0.0 | | | `-- asn1.js@4.8.0 | | +-- create-ecdh@4.0.0 | | +-- create-hash@1.1.2 | | | +-- cipher-base@1.0.2 | | | +-- ripemd160@1.0.1 | | | `-- sha.js@2.4.5 | | +-- create-hmac@1.1.4 | | +-- diffie-hellman@5.0.2 | | | `-- miller-rabin@4.0.0 | | +-- pbkdf2@3.0.4 | | +-- public-encrypt@4.0.0 | | `-- randombytes@2.0.3 | +-- domain-browser@1.1.7 | +-- http-browserify@1.7.0 | | `-- Base64@0.2.1 | +-- https-browserify@0.0.1 | +-- os-browserify@0.2.1 | +-- path-browserify@0.0.0 | +-- process@0.11.8 | +-- punycode@1.4.1 | +-- readable-stream@2.1.4 | | `-- isarray@1.0.0 | +-- stream-browserify@2.0.1 | | `-- readable-stream@2.1.4 | | `-- isarray@1.0.0 | +-- string_decoder@0.10.31 | +-- timers-browserify@1.4.2 | | `-- process@0.11.8 | +-- tty-browserify@0.0.0 | +-- url@0.11.0 | | +-- punycode@1.3.2 | | `-- querystring@0.2.0 | +-- util@0.10.3 | `-- vm-browserify@0.0.4 | `-- indexof@0.0.1 +-- source-map@0.5.6 +-- supports-color@3.1.2 | `-- has-flag@1.0.0 +-- tapable@0.2.4 +-- uglify-js@2.6.4 | +-- async@0.2.10 | +-- uglify-to-browserify@1.0.2 | `-- yargs@3.10.0 | +-- camelcase@1.2.1 | +-- cliui@2.1.0 | | +-- center-align@0.1.3 | | | +-- align-text@0.1.4 | | | | +-- longest@1.0.1 | | | | `-- repeat-string@1.5.4 | | | `-- lazy-cache@1.0.4 | | +-- right-align@0.1.3 | | `-- wordwrap@0.0.2 | `-- window-size@0.1.0 +-- watchpack@1.1.0 | +-- async@2.0.0-rc.4 | `-- chokidar@1.6.0 | +-- anymatch@1.3.0 | | `-- micromatch@2.3.11 | | +-- arr-diff@2.0.0 | | | `-- arr-flatten@1.0.1 | | +-- array-unique@0.2.1 | | +-- braces@1.8.5 | | | +-- expand-range@1.8.2 | | | | `-- fill-range@2.2.3 | | | | +-- is-number@2.1.0 | | | | +-- isobject@2.1.0 | | | | | `-- isarray@1.0.0 | | | | `-- randomatic@1.1.5 | | | +-- preserve@0.2.0 | | | `-- repeat-element@1.1.2 | | +-- expand-brackets@0.1.5 | | | `-- is-posix-bracket@0.1.1 | | +-- extglob@0.3.2 | | +-- filename-regex@2.0.0 | | +-- kind-of@3.0.4 | | | `-- is-buffer@1.1.4 | | +-- normalize-path@2.0.1 | | +-- object.omit@2.0.0 | | | +-- for-own@0.1.4 | | | | `-- for-in@0.1.5 | | | `-- is-extendable@0.1.1 | | +-- parse-glob@3.0.4 | | | +-- glob-base@0.3.0 | | | `-- is-dotfile@1.0.2 | | `-- regex-cache@0.4.3 | | +-- is-equal-shallow@0.1.3 | | `-- is-primitive@2.0.0 | +-- async-each@1.0.0 | +-- fsevents@1.0.14 | | +-- nan@2.4.0 | | `-- node-pre-gyp@0.6.29 | | +-- mkdirp@0.5.1 | | | `-- minimist@0.0.8 | | +-- nopt@3.0.6 | | | `-- abbrev@1.0.9 | | +-- npmlog@3.1.2 | | | +-- are-we-there-yet@1.1.2 | | | | `-- delegates@1.0.0 | | | +-- console-control-strings@1.1.0 | | | +-- gauge@2.6.0 | | | | +-- aproba@1.0.4 | | | | +-- has-color@0.1.7 | | | | +-- has-unicode@2.0.1 | | | | +-- object-assign@4.1.0 | | | | +-- signal-exit@3.0.0 | | | | +-- string-width@1.0.1 | | | | | +-- code-point-at@1.0.0 | | | | | | `-- number-is-nan@1.0.0 | | | | | `-- is-fullwidth-code-point@1.0.0 | | | | +-- strip-ansi@3.0.1 | | | | | `-- ansi-regex@2.0.0 | | | | `-- wide-align@1.1.0 | | | `-- set-blocking@2.0.0 | | +-- rc@1.1.6 | | | +-- deep-extend@0.4.1 | | | +-- ini@1.3.4 | | | +-- minimist@1.2.0 | | | `-- strip-json-comments@1.0.4 | | +-- request@2.73.0 | | | +-- aws-sign2@0.6.0 | | | +-- aws4@1.4.1 | | | +-- bl@1.1.2 | | | | `-- readable-stream@2.0.6 | | | +-- caseless@0.11.0 | | | +-- combined-stream@1.0.5 | | | | `-- delayed-stream@1.0.0 | | | +-- extend@3.0.0 | | | +-- forever-agent@0.6.1 | | | +-- form-data@1.0.0-rc4 | | | | `-- async@1.5.2 | | | +-- har-validator@2.0.6 | | | | +-- chalk@1.1.3 | | | | | +-- ansi-styles@2.2.1 | | | | | +-- escape-string-regexp@1.0.5 | | | | | +-- has-ansi@2.0.0 | | | | | `-- supports-color@2.0.0 | | | | +-- commander@2.9.0 | | | | | `-- graceful-readlink@1.0.1 | | | | +-- is-my-json-valid@2.13.1 | | | | | +-- generate-function@2.0.0 | | | | | +-- generate-object-property@1.2.0 | | | | | | `-- is-property@1.0.2 | | | | | +-- jsonpointer@2.0.0 | | | | | `-- xtend@4.0.1 | | | | `-- pinkie-promise@2.0.1 | | | | `-- pinkie@2.0.4 | | | +-- hawk@3.1.3 | | | | +-- boom@2.10.1 | | | | +-- cryptiles@2.0.5 | | | | +-- hoek@2.16.3 | | | | `-- sntp@1.0.9 | | | +-- http-signature@1.1.1 | | | | +-- assert-plus@0.2.0 | | | | +-- jsprim@1.3.0 | | | | | +-- extsprintf@1.0.2 | | | | | +-- json-schema@0.2.2 | | | | | `-- verror@1.3.6 | | | | `-- sshpk@1.8.3 | | | | +-- asn1@0.2.3 | | | | +-- assert-plus@1.0.0 | | | | +-- dashdash@1.14.0 | | | | | `-- assert-plus@1.0.0 | | | | +-- ecc-jsbn@0.1.1 | | | | +-- getpass@0.1.6 | | | | | `-- assert-plus@1.0.0 | | | | +-- jodid25519@1.0.2 | | | | +-- jsbn@0.1.0 | | | | `-- tweetnacl@0.13.3 | | | +-- is-typedarray@1.0.0 | | | +-- isstream@0.1.2 | | | +-- json-stringify-safe@5.0.1 | | | +-- mime-types@2.1.11 | | | | `-- mime-db@1.23.0 | | | +-- node-uuid@1.4.7 | | | +-- oauth-sign@0.8.2 | | | +-- qs@6.2.0 | | | +-- stringstream@0.0.5 | | | +-- tough-cookie@2.2.2 | | | `-- tunnel-agent@0.4.3 | | +-- rimraf@2.5.3 | | | `-- glob@7.0.5 | | | +-- fs.realpath@1.0.0 | | | +-- inflight@1.0.5 | | | +-- minimatch@3.0.2 | | | | `-- brace-expansion@1.1.5 | | | | +-- balanced-match@0.4.2 | | | | `-- concat-map@0.0.1 | | | `-- path-is-absolute@1.0.0 | | +-- semver@5.2.0 | | +-- tar@2.2.1 | | | +-- block-stream@0.0.9 | | | +-- fstream@1.0.10 | | | | `-- graceful-fs@4.1.4 | | | `-- inherits@2.0.1 | | `-- tar-pack@3.1.4 | | +-- debug@2.2.0 | | | `-- ms@0.7.1 | | +-- fstream-ignore@1.0.5 | | +-- once@1.3.3 | | | `-- wrappy@1.0.2 | | +-- readable-stream@2.1.4 | | | +-- buffer-shims@1.0.0 | | | +-- core-util-is@1.0.2 | | | +-- isarray@1.0.0 | | | +-- process-nextick-args@1.0.7 | | | +-- string_decoder@0.10.31 | | | `-- util-deprecate@1.0.2 | | `-- uid-number@0.0.6 | +-- glob-parent@2.0.0 | +-- is-binary-path@1.0.1 | | `-- binary-extensions@1.5.0 | +-- is-glob@2.0.1 | | `-- is-extglob@1.0.0 | `-- readdirp@2.1.0 | +-- readable-stream@2.1.4 | | `-- isarray@1.0.0 | `-- set-immediate-shim@1.0.1 +-- webpack-sources@0.1.2 | `-- source-map@0.5.6 `-- yargs@4.8.1 +-- cliui@3.2.0 | `-- wrap-ansi@2.0.0 +-- get-caller-file@1.0.2 +-- os-locale@1.4.0 | `-- lcid@1.0.0 | `-- invert-kv@1.0.0 +-- read-pkg-up@1.0.1 | `-- read-pkg@1.1.0 | +-- load-json-file@1.1.0 | | +-- parse-json@2.2.0 | | | `-- error-ex@1.3.0 | | | `-- is-arrayish@0.2.1 | | `-- strip-bom@2.0.0 | | `-- is-utf8@0.2.1 | +-- normalize-package-data@2.3.5 | | +-- hosted-git-info@2.1.5 | | +-- is-builtin-module@1.0.0 | | `-- validate-npm-package-license@3.0.1 | | +-- spdx-correct@1.0.2 | | | `-- spdx-license-ids@1.2.2 | | `-- spdx-expression-parse@1.0.2 | | `-- spdx-exceptions@1.0.5 | `-- path-type@1.1.0 +-- require-directory@2.1.1 +-- require-main-filename@1.0.1 +-- set-blocking@2.0.0 +-- which-module@1.0.0 +-- window-size@0.2.0 +-- y18n@3.2.1 `-- yargs-parser@2.4.1 `-- camelcase@3.0.0 npm WARN eslint-config-airbnb@9.0.1 requires a peer of eslint@^2.9.0 but none was installed. Merge branch 'feature/bookmarks' of ssh://github.com/AlmirKadric/pokemongo-webspnpm WARN eslint-config-airbnb@9.0.1 requires a peer of eslint-plugin-jsx-a11y@^1.2.0 but none was installed. npm WARN eslint-config-airbnb-base@3.0.1 requires a peer of eslint@^2.9.0 but none was installed. npm WARN autocomplete.js@0.21.3 requires a peer of angular@< 2 but none was installed. npm WARN autocomplete.js@0.21.3 requires a peer of jquery@>= 1.7 but none was installed. npm WARN pokemongo-webspoof@1.2.0 No repository field. $ git branch * master $ git branch -a * master remotes/origin/HEAD -> origin/master remotes/origin/develop remotes/origin/feature/bookmarks remotes/origin/master remotes/origin/pokevision remotes/upstream/master remotes/upstream/pokevision $ git pull origin feature/bookmarks From ssh://github.com/AlmirKadric/pokemongo-webspoof * branch feature/bookmarks -> FETCH_HEAD Merge made by the 'recursive' strategy. .editorconfig | 27 ++++++++++++ .gitignore | 1 + package.json | 1 + src/components/Combobox.js | 75 +++++++++++++++++++++++++++++++++ src/components/Passthrough.js | 17 ++++++++ src/styles/index.css | 4 ++ src/styles/map/autopilot.css | 4 -- src/styles/map/bookmarks.css | 6 +++ src/styles/map/index.css | 1 + src/views/map/bookmarks.js | 97 +++++++++++++++++++++++++++++++++++++++++++ src/views/map/index.js | 2 + 11 files changed, 231 insertions(+), 4 deletions(-) create mode 100644 .editorconfig create mode 100644 src/components/Combobox.js create mode 100644 src/components/Passthrough.js create mode 100644 src/styles/map/bookmarks.css create mode 100644 src/views/map/bookmarks.js $ npm install . pokemongo-webspoof@1.2.0 /Users/almirkadric/Projects/Other/pokemongo-webspoof +-- UNMET PEER DEPENDENCY eslint@3.2.2 +-- UNMET PEER DEPENDENCY eslint-plugin-jsx-a11y@2.1.0 `-- react-bootstrap@0.30.2 +-- dom-helpers@2.4.0 +-- keycode@2.1.4 +-- react-overlays@0.6.6 +-- react-prop-types@0.4.0 +-- uncontrollable@4.0.1 `-- warning@3.0.0 npm WARN autocomplete.js@0.21.3 requires a peer of angular@< 2 but none was installed. npm WARN autocomplete.js@0.21.3 requires a peer of jquery@>= 1.7 but none was installed. npm WARN eslint-config-airbnb@9.0.1 requires a peer of eslint@^2.9.0 but none was installed. npm WARN eslint-config-airbnb@9.0.1 requires a peer of eslint-plugin-jsx-a11y@^1.2.0 but none was installed. npm WARN eslint-config-airbnb-base@3.0.1 requires a peer of eslint@^2.9.0 but none was installed. npm WARN pokemongo-webspoof@1.2.0 No repository field. $ npm run dev > pokemongo-webspoof@1.2.0 dev /Users/almirkadric/Projects/Other/pokemongo-webspoof > electron main.js | NODE_ENV=development webpack --config webpack.config.babel.js --watch Hash: d9943d76521251693c91 Version: webpack 2.1.0-beta.20 Time: 14420ms Asset Size Chunks Chunk Names index.js 2.89 MB 0 [emitted] main [870] multi main 40 bytes {0} [built] + 870 hidden modules ^C $ ls dist/index.js .babelrc README.md package.json .editorconfig autoclick.applescript pikachu.gif .eslintignore dist/ pokeball.png .eslintrc example.gif pokemonLocation.gpx .git/ index.html src/ .gitignore main.js webpack.config.babel.js .npmignore node_modules/ xcode-project/ $ ls dist/index.js $ vim .gitignore $ rm dist/index.js $ npm run dev > pokemongo-webspoof@1.2.0 dev /Users/almirkadric/Projects/Other/pokemongo-webspoof > electron main.js | NODE_ENV=development webpack --config webpack.config.babel.js --watch Hash: d9943d76521251693c91 Version: webpack 2.1.0-beta.20 Time: 14502ms Asset Size Chunks Chunk Names index.js 2.89 MB 0 [emitted] main [870] multi main 40 bytes {0} [built] + 870 hidden modules ```
Electron console output ``` index.js:74912 Download the React DevTools and use an HTTP server (instead of a file: URL) for a better development experience: https://fb.me/react-devtools util.js:210 Google Maps API warning: NoApiKeys https://developers.google.com/maps/documentation/javascript/error-messages#no-api-keys ```
iam4x commented 8 years ago

Thank's for the work @AlmirKadric, can you rebase on origin/master branch and it should work 👍

Ben0304 commented 6 years ago

Hello @AlmirKadric,

I tried following the instructions, by typing the commands stated in your terminal output. Even if some Terminal outputs differ from your Terminal outputs stated above, I didn't get any error messages but for the last command "npm run dev": npm ERR! file /Users/Ben0304/spoofing/PokemonGO/pokemongo-webspoof_implemented_bookmark_feature/package.json npm ERR! code EJSONPARSE npm ERR! Failed to parse json npm ERR! Unexpected token < in JSON at position 1051 while parsing near '...eocoder": "^0.2.2", npm ERR! <<<<<<< HEAD npm ERR! "re...' npm ERR! File: /Users/Ben0304/spoofing/PokemonGO/pokemongo-webspoof_implemented_bookmark_feature/package.json npm ERR! Failed to parse package.json data. npm ERR! package.json must be actual JSON, not just JavaScript. npm ERR! npm ERR! Tell the package author to fix their package.json file. JSON.parse Do you still support your feature? If so, many thanks in advance for your help.

Kind regards, Ben0304