forked from skyisle/nendic-ext
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.coffee
109 lines (95 loc) · 2.43 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
module.exports = (grunt) ->
grunt.initConfig
# 익스텐션의 매니페스트 파일
# `package.json`은 빌드에서 사용하지 않는다.
manifest: grunt.file.readJSON 'src/manifest.json'
clean:
build: ['build', 'src/js', 'src/css', 'release']
coffee:
build:
files: [
expand: true
cwd: 'src/coffee'
src: ['**/*.coffee']
dest: 'src/js'
ext: '.js'
]
less:
develop:
files: [
expand: true
cwd: 'src/less'
src: ['*.less']
dest: 'src/css'
ext: '.css'
]
copy:
# 이미지와 CSS 파일을 빌드 디렉토리로 복사한다.
build:
files: [
expand: true
cwd: 'src'
src: ['*.html', '*.json']
dest: 'build'
,
expand: true
cwd: 'src/img'
src: ['*.jpg', '*.png', '*.gif']
dest: 'build/img'
,
expand: true
cwd: 'src/css'
src: ['*.css']
dest: 'build/css'
,
expand: true
cwd: 'src/font'
src: ['*.woff', '*.woff2']
dest: 'build/font'
,
expand: true
cwd: 'src/js'
src: ['**/*.js']
dest: 'build/js'
,
expand: true
cwd: 'src/vendor'
src: ['*.js']
dest: 'build/vendor'
]
compress:
# 빌드 디렉토리를 압축한 후 현재 버전을 붙여 `zip` 파일을 생성한다.
# 웹 스토어에는 압축한 파일로 등록한다.
release:
options:
archive: 'release/naver_endic_<%= manifest.version %>.zip'
files: [
expand: true
cwd: 'build'
src: ['**']
dest: './'
]
# NPM 태스크 로드
grunt.loadNpmTasks task for task in [
'grunt-contrib-clean'
'grunt-contrib-copy'
'grunt-contrib-less'
'grunt-contrib-coffee'
'grunt-contrib-compress'
]
# 태스크 등록
grunt.registerTask 'default', [
'coffee'
'less'
]
# 빌드 디렉토리로 스크립트를 압축한다.
grunt.registerTask 'build', [
'clean'
'default'
'copy'
]
# 빌드 후 서비스 배포를 위한 `zip` 파일을 생성한다.
grunt.registerTask 'release', [
'build'
'compress'
]