Skip to content
This repository has been archived by the owner on Aug 6, 2021. It is now read-only.

Latest commit

 

History

History
16 lines (12 loc) · 237 Bytes

build.js.md

File metadata and controls

16 lines (12 loc) · 237 Bytes

myApp/tasks/register/build.js

module.exports = function (grunt) {
	grunt.registerTask('build', [
		'compileAssets',
		'linkAssetsBuild',
		'clean:build',
		'copy:build'
	]);
};