-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
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
import iOSTheme from 'reapp-ui/themes/ios/theme' results in parse error #58
Comments
I'm using browserify by the way... |
I've tried installing cssify but it didn't change anything |
so I guess it's because the node_modules isn't transpiled by browserify making this related to #46.... I'm just guessing here. |
So I've added
to the package.json file and now it can run browserify. But now it fails at runtime do to the makeStyles dynamic require in the ios styles.js file. So My approach must be totally wrong.. Don't know what to do =) |
Hi there, have you found a solution to your issue ? I am facing the same problem here, quite annoying.. |
@schankam nope - didn't find any solution. Hope you will |
I am having the same problem when requiering this package from |
I don't know about browserify, but this webpack can take care of this error by using the module.exports = {
entry: './entry',
module: {
loaders: [
{ test: /\.css$/, loader: "style!css" },
...
]
}
}; And it will parse that |
This example gives the following error =(
It seems like it's the iOS theme that's causing this issue..
The text was updated successfully, but these errors were encountered: