question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

missin semi-colon error when building apps with v1.0.0

See original GitHub issue

I’ve had this in 3 apps. When updating from <1 to v1 I get a build error:

Build Error (broccoli-persistent-filter:Filter) in assets/dummy.css.map:1:788

/Projects/ember-light-table/assets/dummy.css.map:1:788: Missed semicolon> 

You can recreate this in the dummy app for ember-light-table by bumping the autoprefixer addon. Any ideas?

Issue Analytics

  • State:closed
  • Created 3 years ago
  • Reactions:1
  • Comments:8 (1 by maintainers)

github_iconTop GitHub Comments

1reaction
snewcomercommented, May 7, 2020

For those that are curious, this is an example config for us after upgrading (was part of my commit to upgrade to 1.0.0)! Thank you @nag5000 for pointing this out!

    autoprefixer: {
        enabled: true,
        cascade: true,
        sourcemap: !envIsProduction
    },
    sassOptions: {
      sourceMapEmbed: !envIsProduction,
      implementation: sass,
      cacheInclude: [/\.(css|scss)$/]
    },

Let me know if this (or some other form) doesn’t work for somebody!

1reaction
dknutsencommented, Apr 8, 2020

Just tried bumping to v1 and I’m seeing same thing

Read more comments on GitHub >

github_iconTop Results From Across the Web

SyntaxError: missing ; before statement - JavaScript | MDN
The JavaScript exception "missing ; before statement" occurs when there is a semicolon ( ; ) missing somewhere and can't be added by...
Read more >
How do I fix this missing semicolon syntax error in Javascript?
When I run this, I see an error in the Internet Explorer console that says SCRIPT1004: Expected ';' . I don't see a...
Read more >
Failed to compile. Missing semicolon semi. #4698 - GitHub
Hello, Working on a project bootstrapped with create-react-app. After I cloned it, I ran npm install and then when I run npm start...
Read more >
"missing semicolon" What's wrong with my code? - Codecademy
The error I get is by “else”. As you may have guessed, it says “missing semicolon”. So, what's wrong with my code?
Read more >
Go 1.17 Release Notes - The Go Programming Language
The go command now understands //go:build lines and prefers them over // +build lines. The new syntax uses boolean expressions, just like Go,...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found