We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
npm run dev
The first error was easy to fix:
λ npm run dev > microstudio@1.0.0 dev > npm run compile && concurrently "npm:compile-and-watch" "npm:start" > microstudio@1.0.0 compile > coffee -c --no-header -b ../. /Users/ryanmcquen/code/microstudio/server/webapp.coffee:47:101: error: unexpected , @reserved = ["explore","documentation","projects","about","login","user","tutorials\\/examples",,"tutorials\\/community"] ^
But I'm not familiar enough with CoffeeScript for this one:
λ npm run dev > microstudio@1.0.0 dev > npm run compile && concurrently "npm:compile-and-watch" "npm:start" > microstudio@1.0.0 compile > coffee -c --no-header -b ../. /Users/ryanmcquen/code/microstudio/static/js/languages/microscript/v2/processor.coffee:50:17: error: unexpected identifier a = [...arguments] ^^^^^^^^^
The text was updated successfully, but these errors were encountered:
Remove extraneous comma that breaks npm run dev.
a2e5cd9
Resolves this error: ``` λ npm run dev > microstudio@1.0.0 dev > npm run compile && concurrently "npm:compile-and-watch" "npm:start" > microstudio@1.0.0 compile > coffee -c --no-header -b ../. /Users/ryanmcquen/code/microstudio/server/webapp.coffee:47:101: error: unexpected , @reserved = ["explore","documentation","projects","about","login","user","tutorials\\/examples",,"tutorials\\/community"] ^ ``` Related to: pmgl#224
No branches or pull requests
The first error was easy to fix:
But I'm not familiar enough with CoffeeScript for this one:
The text was updated successfully, but these errors were encountered: