We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b9b66d commit e140a29Copy full SHA for e140a29
index.js
@@ -56,6 +56,11 @@ if (argv.watch) {
56
process.stdin.resume()
57
}
58
59
+/* istanbul ignore next */
60
+if (parseInt(postcss().version) < 8) {
61
+ error('Please install PostCSS 8 or above')
62
+}
63
+
64
Promise.resolve()
65
.then(() => {
66
if (argv.watch && !(argv.output || argv.replace || argv.dir)) {
0 commit comments