-
It doesn't detect CSJS syntax here:
``` js
module.exports = register(csjs`
.bla {}
`);
```
And here:
``` js
csjs.noScope`
.global {}
```
-
I'm not sure if I'm doing something wrong or if this is just expected behavior, but given the following:
``` js
const labelBase = csjs`
.boldBase {
font-weight: bold;
}
`;
const styles = csj…
-
Like these:
``` css
.my-nav-tabs li .active {
...
}
```
when `.active` is in global scope _or_ is an another class defined in the same `csjs` literal or imported from another csjs variable..
-
Currently, only the first-level CSS is included/injected by `react-csjs` out of the box. It would be nice to also include all of the "extended" styles as well.
See https://github.com/rtsao/csjs/issue…
-
The `.toString()` technique employed by csjs can be problematic when used in conjunction with `React.PropTypes.string`.
Rather than requiring string coercion on behalf of the user, a helper method to…
rtsao updated
8 years ago
-
I also tried `csjs-extractify` but it creates a blank CSS file. Is there a way to get it to work?
-
With CSJS syntax, how do you use tools such as emmet to expand your CSS code?
Do you use something in particular?
-
Related issue: https://github.com/rtsao/csjs/issues/12 (benchmarks)
Some ideas:
- rudimentary lexical analysis (simple comment tokenization) to eliminate need for `ignoreComments` regex
rtsao updated
7 years ago
-
It would be useful to have a UMD build of `react-csjs` so that samples/playground testing and such can be made in [webpackbin](http://www.webpackbin.com/) for example.
-
I thought it would be cool if you could do this syntax:
https://github.com/substack/meowave/blob/894e01d75da152d72f96e222a0b4f0f848364184/main.js#L42-L48
but instead of having to do inline styles, c…