We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1230744 commit 2039f9aCopy full SHA for 2039f9a
README.md
@@ -58,6 +58,27 @@ function build() {
58
exports.build = build;
59
```
60
61
+### custom unassert options
62
+
63
+```javascript
64
+const { src, dest } = require('gulp');
65
+const unassert = require('gulp-unassert');
66
67
+function build() {
68
+ return src('./src/*.js')
69
+ .pipe(unassert({
70
+ modules: [
71
+ 'node:assert',
72
+ 'node:assert/strict',
73
+ 'invariant',
74
+ 'uvu/assert'
75
+ ]
76
+ }))
77
+ .pipe(dest('./dist'));
78
+}
79
+exports.build = build;
80
+```
81
82
83
## Source maps
84
0 commit comments