Arcane Build Process
Currently built on Gulpjs
Install on a new project
npx install-peerdeps --dev arcane-gulp
- Create a
gulpfile.js
const tasks = ;tasks;// Gulp does not support ES module exports, default to older syntax to// expose tasks to Gulp CLImoduleexports = tasks; - Add the following tasks to your
package.json
"scripts": {"dev": "npm run development","development": "cross-env NODE_ENV=development gulp","prod": "npm run production","production": "cross-env NODE_ENV=production gulp"}