Standard Notes theme. Fork of https://github.com/jakecza/dark-hybrid-theme-sn
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
590 B
31 lines
590 B
module.exports = function(grunt) {
|
|
|
|
grunt.initConfig({
|
|
watch: {
|
|
css: {
|
|
files: ['src/**/*.scss'],
|
|
tasks: ['sass'],
|
|
options: {
|
|
spawn: false,
|
|
},
|
|
}
|
|
},
|
|
|
|
sass: {
|
|
dist: {
|
|
options: {
|
|
style: 'expanded'
|
|
},
|
|
files: {
|
|
'dist/dist.css': 'src/main.scss'
|
|
}
|
|
}
|
|
},
|
|
});
|
|
|
|
grunt.loadNpmTasks('grunt-newer');
|
|
grunt.loadNpmTasks('grunt-contrib-watch');
|
|
grunt.loadNpmTasks('grunt-contrib-sass');
|
|
|
|
grunt.registerTask('default', ['sass']);
|
|
};
|
|
|