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 873dc31 commit b066df2Copy full SHA for b066df2
plop-templates/utils.js
@@ -1,2 +1 @@
1
-exports.notEmpty = name => v =>
2
- !v || v.trim() === '' ? `${name} is required` : true
+exports.notEmpty = name => v => !v || v.trim() === '' ? `${name} is required` : true
plopfile.js
@@ -1,6 +1,5 @@
const viewGenerator = require('./plop-templates/view/prompt')
const componentGenerator = require('./plop-templates/component/prompt')
3
-
4
module.exports = function (plop) {
5
plop.setGenerator('view', viewGenerator)
6
plop.setGenerator('component', componentGenerator)
postcss.config.js
@@ -1,4 +1,3 @@
-// postcss.config.js
module.exports = {
plugins: {
'autoprefixer': {},
0 commit comments