-
-
Notifications
You must be signed in to change notification settings - Fork 186
/
Gruntfile.js
106 lines (96 loc) · 3.48 KB
/
Gruntfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/*
Minimal Theme compiler for Obsidian
MIT License
Copyright (c) 2020-2024 Steph Ango (@kepano)
Grunt is JS library that runs a sequence of compilation tasks, and watches
the working files to automatically run this sequence whenever changes happen.
Read more at gruntjs.com
See readme for more details:
https://github.com/kepano/obsidian-minimal
*/
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
/* Get the user-defined OBSIDIAN_PATH from .env file
so that we can live reload the theme in the vault */
env : {
local : {
src : ".env"
}
},
/* Compile the compressed and uncompressed versions of
the theme using Sass */
sass: {
unminified: {
files: {
'src/css/main.css' : 'src/scss/index.scss'
}
},
dist: {
options: {
style: 'compressed',
},
files: {
'src/css/main.min.css' : 'src/scss/index.scss'
}
}
},
/* Minify theme used for distribution and live reload */
cssmin: {
options: {
advanced: false,
aggressiveMerging: false,
mediaMerging: false,
restructuring: false
},
target: {
files: {
'src/css/main.min.css' : 'src/css/main.min.css'
}
}
},
/* Concatenate theme files adding in the commented license, plugin compatibility,
and Style Settings that would otherwise be removed in compression */
concat_css: {
dist: {
files: {
'theme.css': ['src/css/license.css','src/css/main.min.css','src/css/plugin-compatibility.css','src/css/style-settings.css']
}
},
unminified: {
files: {
'Minimal.css': ['src/css/license.css','src/css/main.css','src/css/plugin-compatibility.css','src/css/style-settings.css']
}
}
},
/* Copy the finished distribution file from the working directory to the vault
directory and use correct theme name */
copy: {
local: {
expand: true,
src: 'theme.css',
dest: process.env.HOME + process.env.OBSIDIAN_PATH,
rename: function(dest, src) {
return dest + 'theme.css';
}
}
},
/* Watch for changes, and compile new changes */
watch: {
css: {
files: ['src/**/*.scss','src/**/*.css'],
tasks: ['env','sass:unminified','sass:dist','cssmin','concat_css','copy',]
}
}
});
grunt.loadNpmTasks('grunt-env');
grunt.loadNpmTasks('grunt-contrib-sass');
grunt.loadNpmTasks('grunt-contrib-cssmin');
grunt.loadNpmTasks('grunt-concat-css');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.registerTask('loadconst', 'Load constants', function() {
grunt.config('OBSIDIAN_PATH', process.env.OBSIDIAN_PATH);
});
grunt.registerTask('default',['env:local','loadconst','watch']);
}