Skip to content

Commit c449a13

Browse files
committed
feat: 🎸 make safe addom less chatty
1 parent 7142d86 commit c449a13

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

‎addon/safe.js

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
'use strict';
22

3-
exports.addon = function (renderer) {
3+
exports.addon = function (renderer, options) {
44
if (process.env.NODE_ENV !== 'production') {
55
require('./__dev__/warnOnMissingDependencies')('safe', renderer, ['putRaw']);
66
}
77

8+
options = options || {};
9+
810
if (renderer.client) {
911
var putRaw = renderer.putRaw;
1012

@@ -13,7 +15,11 @@ exports.addon = function (renderer) {
1315
putRaw.apply(null, arguments);
1416
// eslint-disable-next-line no-empty
1517
} catch (error) {
16-
console.error(error);
18+
if (process.env.NODE_ENV !== 'production') {
19+
if (!options.quiet) {
20+
console.error(error);
21+
}
22+
}
1723
}
1824
};
1925
}

‎docs/safe.md

+7
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ rule is not recognized by a brwoser (for example, it might happen if you use som
55
that is not supported by the brwoser) it will throw. For performance reasons, `nano-css` does not
66
catch those errors. This addon will safely catch all insertion errors and log them.
77

8+
It will log errors only in development mode. If you want to suppress error messages even in
9+
development mode set `.quiet` key on options object to true:
10+
11+
```js
12+
addonSave(nano, {quiet: true});
13+
```
14+
815

916
## Installation
1017

0 commit comments

Comments
 (0)