Skip to content

Commit f047821

Browse files
committed
feat: display inserted styles in devtools in DEV
1 parent 5f629b8 commit f047821

File tree

3 files changed

+2
-15
lines changed

3 files changed

+2
-15
lines changed

addon/__tests__/index.dev.test.js

-5
This file was deleted.

index.js

+1-9
Original file line numberDiff line numberDiff line change
@@ -60,15 +60,7 @@ exports.create = function (config) {
6060
if (process.env.NODE_ENV === 'production') {
6161
renderer.sh.sheet.insertRule(rawCssRule, 0);
6262
} else {
63-
try {
64-
renderer.sh.sheet.insertRule(rawCssRule, 0);
65-
} catch (error) {
66-
// eslint-disable-next-line
67-
console.info('Could not insert CSS rule.');
68-
console.error(error);
69-
70-
renderer.sh.appendChild(document.createTextNode(rawCssRule));
71-
}
63+
renderer.sh.appendChild(document.createTextNode(rawCssRule));
7264
}
7365
};
7466
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nano-css",
3-
"version": "1.15.2",
3+
"version": "1.15.3",
44
"description": "Smallest 5th gen CSS-in-JS library",
55
"main": "index.js",
66
"unpkg": "dist/nano-css.umd.min.js",

0 commit comments

Comments
 (0)