forked from stefanwalther/sense-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
default-config.yml
210 lines (192 loc) · 6.35 KB
/
default-config.yml
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
# -------------------------------------------------------------------------------
# Package Name
# -------------------------------------------------------------------------------
packageName: null # defaults to "name" in package.json
# -------------------------------------------------------------------------------
# Basic Paths
# -------------------------------------------------------------------------------
srcDir: "./src" # defaults to "./src"
tmpDir: "./.tmp" # defaults to "./.tmp"
buildDir: "./build" # defaults to "./build"
buildDevDir: "./build/dev" # defaults to "./build/dev"
buildReleaseDir: "./build/release" # defaults to "./build/release"
# -------------------------------------------------------------------------------
# Runtime options
# -------------------------------------------------------------------------------
debugOutput: true
# -------------------------------------------------------------------------------
# Deployment
# -------------------------------------------------------------------------------
deployment:
toLocal:
enabled: false
pathFetching: true # By default the path will be automatically fetched.
localExtensionsBaseDir: # defaults to the local extension directory of Qlik Sense,
# if pathFetching is enabled, this path will be determined automatically
extensionDirOverride: # Define the extensionDir if you want to deploy to another directory than defined in packageName
qrs: # Not implemented, yet
enabled: false
url: null
toSsh: # Upload via SSH
enabled: false
host: "192.168.56.11"
port: 22
username: "usr"
password: "foobar"
dest: "/c/Users/usr/Documents/Qlik/Sense/Extensions/whatever-extension"
viaShell:
enabled: false
# root commands are deprecated, move your tasks to "commands"
# cmd: "ls"
# commands:
# - enabled: true
# cmd: "echo 1"
# -------------------------------------------------------------------------------
# Task specific settings
# -------------------------------------------------------------------------------
transpile:
src: "./"
dest: "./"
wbfolder:
enabled: true
cwd: "./.tmp"
src: "./**/*.*" # Ideally we should use variables here, but not supported by js-yaml right now
dest: "./.tmp/wbfolder.wbl" # Destination for the generated wbfolder.wbl file, by default in the output"s root directory
npm:
publish: true # If set to false, task npm:publish will NOT do anything
watch:
- "./src/**/*.*"
# -------------------------------------------------------------------------------
# Import tasks
# -------------------------------------------------------------------------------
import:
fromLocal:
enabled: true
files:
# - ["src/glob", "dest/glob/"]
fromSsh:
enabled: false
host: "192.168.56.11"
port: 22
username: "usr"
password: "foobar"
src: ""
dest: ""
files:
- src: ""
dest: ""
# -------------------------------------------------------------------------------
# Less tasks
# -------------------------------------------------------------------------------
lessReduce:
src: "./src/lib/less/main.less"
dest: "./.tmp/lib/css"
lessEach:
src: "./src/**/*.less"
dest: "./.tmp"
replaceTmp:
src: "./.tmp/**/*.{qext,json,js,html,htm,xml,yml,txt}"
dest: "./.tmp"
# -------------------------------------------------------------------------------
# CSS minify tasks
# -------------------------------------------------------------------------------
cleanCssTmp:
src:
- "./.tmp/**/*.css"
- "!./.tmp/**/*.min.css"
dest: "./.tmp/"
# -------------------------------------------------------------------------------
# Custom replacement patterns
# -------------------------------------------------------------------------------
replacements:
# -------------------------------------------------------------------------------
# Uglify tasks
# -------------------------------------------------------------------------------
uglify:
mangle: false # Do not mangle, otherwise angularJS will be broken
compress: true
output:
comments: "some"
uglifyTmp:
src: "./.tmp/**/*.js"
srcExcluded: "./.tmp/**/*.min.js"
dest: "./.tmp"
# -------------------------------------------------------------------------------
# Shell
# -------------------------------------------------------------------------------
shell:
# enable or disable shell tasks in general
enabled: false
tasks:
# - enabled: true
# cmd: echo 1
# - enabled: true
# cmd: echo 2
# -------------------------------------------------------------------------------
# Misc options
# -------------------------------------------------------------------------------
htmlmin:
collapseWhitespace: true
preserveLineBreaks: true
removeComments: true
# -------------------------------------------------------------------------------
# Task chains
# -------------------------------------------------------------------------------
taskChains:
"build":
- "shell"
- "clean:tmp"
- "copy:toTmp"
- "import:fromLocal"
- "less:reduce"
- "replace:tmp"
- "wbfolder:tmp"
- "clean:tmpIllegal" #clean illegal files
- "jsonlint:tmp"
- "htmlmin:tmp"
- "cleanCss:tmp"
- "clean:buildDev"
- "header-js:tmp"
- "copy:tmpToDev"
- "zip:dev"
- "clean:localExtensionDir"
- "deploy:toLocal"
- "deploy:toSsh"
- "deploy:viaShell"
- "clean:tmp"
"release":
- "shell"
- "clean:tmp"
- "copy:toTmp"
- "import:fromLocal"
- "less:reduce"
- "replace:tmp"
# - "wbfolder:tmp" ==> doesn"t make sense since the uglified files cannot really be edited in Dev-Hub
- "uglify:tmp"
- "clean:tmpIllegal"
- "jsonlint:tmp"
- "htmlmin:tmp"
- "minify:json:tmp"
- "cleanCss:tmp"
- "header-js:tmp"
- "clean:buildRelease"
- "copy:tmpToRelease"
- "zip:release"
- "zip:latest"
- "clean:localExtensionDir"
- "deploy:toLocal"
- "deploy:toSsh"
- "deploy:viaShell"
- "clean:tmp"
"publish":
- "git:add"
- "git:commit"
- "git:push"
"all":
- "bump:patch"
- "build"
- "release"
- "git:add"
- "git:commit"
- "git:push"
- "npm:publish"