Presets of gulp task
$ npm i -D @itcase/gulp gulp postcss
- Create
gulpfile.mjs
- Set list of tasks, example:
email
- Available tasks located in the
./tasks
folder - Create
postcss.config.js
- Optionally you can add commands in
Makefile
gulpfile.mjs
import gulpTasks, {
email,
emailTemplates,
errorTemplates,
watchEmail,
watchErrors,
} from '@itcase/gulp'
export default gulpTasks
export { email, emailTemplates, errorTemplates, watchEmail, watchErrors }
postcss.config.js
const postcssConfig = require('@itcase/gulp/postcss/index.cjs')
module.exports = postcssConfig
MakeFile
email:
gulp emailTemplates --path templates/emails/ $(ARGV)
gulp emailTemplates --path api/templates/api/emails/ $(ARGV)
email-prod:
gulp emailTemplates --path templates/emails/ --production
gulp emailTemplates --path api/templates/api/emails/ --production
error:
gulp errorTemplates
List of available tasks is called by the command gulp --tasks
Create email templates with inline CSS styles
Options:
-
--cssPath
– path to css files,default: static/emails/css/
-
--path
– path to template folder -
--targetPath
– path to destanation folder for processed templates
gulp emailTemplates --path templates/emails/
gulp emailTemplates --path api/templates/api/emails/
Options:
-
--cssPath
– path to css files,default: static/errors/css/
-
--path
– path to template folder,default: static/errors/
-
--targetPath
– path to destanation folder for processed templates
Options:
-
--cssPath
– path to css files,default: static/pdf/
-
--path
– path to template folder,default: api/templates/api/document/
-
--targetPath
– path to destanation folder for processed templates
Options:
-
--cssPath
– path to css files,default: static/webview/
-
--targetPath
– path to destanation folder for processed templates