Add default widget styling

This commit is contained in:
Cooper Dalrymple
2026-06-08 15:34:53 -05:00
parent d72ad2c866
commit 26d318160b
3 changed files with 29 additions and 9 deletions
+4 -4
View File
@@ -44,16 +44,16 @@ gulp.task(
gulp.task('package-copy', () => {
return gulp.src([
(fs.existsSync('acf') ? 'acf/**/*' : null),
'assets/**/*',
'inc/**/*',
(fs.existsSync('lib') ? 'lib/**/*' : null),,
'lib/**/*',
'vendor/**/*',
'LICENSE',
`${NAME}.php`,
'readme.txt',
(fs.existsSync('updatepulse.json') ? 'updatepulse.json' : null),
'updatepulse.json',
'!vendor/**/node_modules/**/*',
].filter(x => x), {
], {
base: './',
encoding: false,
})