witheve / Eve

Better tools for thought
http://witheve.com
Apache License 2.0
7.16k stars 257 forks source link

Parser exception on missing close quote #852

Closed btheado closed 7 years ago

btheado commented 7 years ago

When a quote is missing like this:

bind
  [#ui/div text: "missing quote]

a parser exception like "Cannot read property 'length' of undefined" results

joshuafcole commented 7 years ago

This should be fixed by: https://github.com/witheve/Eve/pull/848. You can build a local copy of eve by:

$ git clone https://github.com/witheve/Eve.git
$ cd Eve
$ npm install
$ npm pack
$ ls

From ls, find the name of the new witheve-<version>.tar.gz file generated, and then update your project to use it by:

$ cd path/to/project-directory
$ npm install path/to/witheve-<version>.tar.gz
btheado commented 7 years ago

Thanks. I no longer get parser exception for this case.