-
Notifications
You must be signed in to change notification settings - Fork 10
/
Gruntfile.coffee
158 lines (144 loc) · 4.59 KB
/
Gruntfile.coffee
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
module.exports = (grunt) ->
# Flags from command line options.
IS_PRODUCTION = (grunt.option('env') == 'production')
# Define patterns used to match image-based assets (for ImageMin) and other types of asset.
IMAGE_ASSET_PATTERN = '**/*.{png,jpg,jpeg,gif,svg}'
STATIC_ASSETS_PATTERN = '**/*.{css,js,scss,css.liquid,js.liquid,scss.liquid,eot,ttf,woff}'
# Initialise the Grunt config.
grunt.initConfig
pkg: grunt.file.readJSON('package.json')
# Meta information about theme.
meta:
banner:
'// Skillshare Examples\n' +
'// version: <%= pkg.version %>\n' +
'// author: <%= pkg.author %>\n' +
'// license: <%= pkg.licenses[0].type %>\n'
# Compilation of SCSS files to compressed .css.liquid files.
sass:
options:
style: if IS_PRODUCTION then 'compressed' else 'expanded'
sourcemap: not IS_PRODUCTION
theme:
files:
'.build/assets/styles.css.liquid': 'theme/assets/scss/styles.scss'
# Concatenation and minification of Javascript.
uglify:
options:
compress: IS_PRODUCTION
mangle: IS_PRODUCTION
beautify: not IS_PRODUCTION
sourceMap: not IS_PRODUCTION
theme:
files:
'.build/assets/script.js.liquid': [
'node_modules/jquery/dist/jquery.js',
'node_modules/shopify-cartjs/dist/rivets-cart.js',
]
# Optimisation of image assets.
imagemin:
options:
optimizationLevel: if IS_PRODUCTION then 7 else 0
progressive: IS_PRODUCTION
interlaced: IS_PRODUCTION
assets:
files: [{
expand: true,
flatten: true,
cwd: 'theme/assets/static',
src: [IMAGE_ASSET_PATTERN],
dest: '.build/assets'
}]
# Copying of various theme files.
copy:
layout:
expand: true
cwd: 'theme/layout'
src: '*.liquid'
dest: '.build/layout'
templates:
expand: true
cwd: 'theme/templates'
src: '**/**.liquid'
dest: '.build/templates'
settings:
expand: true
cwd: 'theme/config'
src: 'settings_schema.json'
dest: '.build/config'
snippets:
expand: true
cwd: 'theme/snippets'
src: '*.liquid'
dest: '.build/snippets'
locales:
expand: true
cwd: 'theme/locales'
src: '*.json'
dest: '.build/locales'
assets:
expand: true
flatten: true
cwd: 'theme/assets/static'
src: [STATIC_ASSETS_PATTERN]
dest: '.build/assets'
# Compression to a .zip for direct upload to Shopify Admin.
compress:
zip:
options:
archive: 'dist/your-theme-name.zip'
files: [
expand: true
cwd: '.build'
src: [
'assets/**',
'config/**',
'layout/**',
'locales/**',
'snippets/**',
'templates/**'
]
]
# Clean up generated files.
clean: ['dist', '.build/assets', '.build/config', '.build/layout', '.build/locales', '.build/snippets', '.build/templates']
# Watch task.
watch:
sass:
files: ['theme/assets/scss/**/*.scss']
tasks: ['newer:sass']
uglify:
files: ['theme/assets/js/**/*.js']
tasks: ['newer:uglify']
imagemin:
files: ['theme/assets/static/' + IMAGE_ASSET_PATTERN]
tasks: ['newer:imagemin']
copy:
files: [
'theme/layout/*.liquid',
'theme/locales/*.json',
'theme/settings/settings_schema.json',
'theme/snippets/*.liquid',
'theme/templates/**/*.liquid',
'theme/assets/static/' + STATIC_ASSETS_PATTERN
]
tasks: ['newer:copy']
# Production-specific configuration.
if IS_PRODUCTION
grunt.config 'newer'
options:
override: (detail, include) ->
include(true)
# Load tasks made available through NPM.
grunt.loadNpmTasks 'grunt-contrib-clean'
grunt.loadNpmTasks 'grunt-contrib-compress'
grunt.loadNpmTasks 'grunt-contrib-concat'
grunt.loadNpmTasks 'grunt-contrib-copy'
grunt.loadNpmTasks 'grunt-contrib-imagemin'
grunt.loadNpmTasks 'grunt-contrib-sass'
grunt.loadNpmTasks 'grunt-contrib-uglify'
grunt.loadNpmTasks 'grunt-contrib-watch'
grunt.loadNpmTasks 'grunt-newer'
# Register tasks made available through the Gruntfile.
grunt.registerTask 'build', ['newer:sass', 'newer:uglify', 'newer:imagemin', 'newer:copy']
grunt.registerTask 'dist', ['build', 'compress']
grunt.registerTask 'default', ['build', 'watch']