-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathgulpfile.js
More file actions
233 lines (203 loc) · 6.72 KB
/
gulpfile.js
File metadata and controls
233 lines (203 loc) · 6.72 KB
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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
'use strict'
const { parallel, series, watch } = require('gulp')
const createTask = require('./gulp.d/lib/create-task')
const exportTasks = require('./gulp.d/lib/export-tasks')
const log = require('fancy-log')
const { exec, execSync } = require('child_process')
const path = require('path')
const bundleName = 'ui'
const buildDir = 'build'
const previewSrcDir = 'preview-src'
const previewDestDir = 'public'
const srcDir = 'src'
const destDir = `${previewDestDir}/_`
const { reload: livereload } = process.env.LIVERELOAD === 'true' ? require('gulp-connect') : {}
const serverConfig = { host: '0.0.0.0', port: 5252, livereload }
const task = require('./gulp.d/tasks')
const generateBloblangGrammar = require('./gulp.d/tasks/generate-bloblang-grammar')
const glob = {
all: [srcDir, previewSrcDir],
css: `${srcDir}/css/**/*.css`,
js: ['gulpfile.js', 'gulp.d/**/*.js', `${srcDir}/{helpers,js}/**/*.js`],
}
/**
* Compiles Handlebars partial templates by executing a Node.js script for each specified partial.
*
* @param {Function} cb - Callback to signal task completion or failure.
*
* @throws {Error} If any partial compilation fails, the callback is invoked with an error.
*/
function compileWidgets (cb) {
const partialsToCompile = [
{ name: 'header', context: 'context/header.json' },
{ name: 'footer', context: 'context/footer.json', scripts: ['05-mobile-navbar.js'] },
{ name: 'head-bump', context: 'context/head.json' },
]
try {
for (const { name, context, scripts } of partialsToCompile) {
const jsArg = scripts ? ` --jsScripts='${JSON.stringify(scripts)}'` : ''
const ctxArg = context ? `${context}` : ''
const cmd = `node compile-partial.js ${name} ${ctxArg}${jsArg}`.trim()
execSync(cmd, { stdio: 'inherit' })
}
cb()
} catch (err) {
cb(new Error(`Failed to compile Handlebars partials: ${err.message}`))
}
}
const cleanTask = createTask({
name: 'clean',
desc: 'Clean files and folders generated by build',
call: task.remove(['build', 'public']),
})
const bundleReactTask = createTask({
name: 'bundle:react',
desc: 'Compile every React module under src/js/react',
call: task.bundleReact({
srcDir: path.join(__dirname, srcDir, 'js', 'react'),
destDir: path.join(__dirname, srcDir, 'static', 'js'),
}),
})
const lintCssTask = createTask({
name: 'lint:css',
desc: 'Lint the CSS source files using stylelint (standard config)',
call: task.lintCss(glob.css),
})
const lintJsTask = createTask({
name: 'lint:js',
desc: 'Lint the JavaScript source files using eslint (JavaScript Standard Style)',
call: task.lintJs(glob.js),
})
const lintTask = createTask({
name: 'lint',
desc: 'Lint the CSS and JavaScript source files',
call: parallel(lintCssTask, lintJsTask),
})
const formatTask = createTask({
name: 'format',
desc: 'Format the JavaScript source files using prettify (JavaScript Standard Style)',
call: task.format(glob.js),
})
const buildTask = createTask({
name: 'build',
desc: 'Build and stage the UI assets for bundling',
call: task.build(
srcDir,
destDir,
process.argv.slice(2).some((name) => name.startsWith('preview'))
),
})
const generateBloblangGrammarTask = createTask({
name: 'generate:bloblang-grammar',
desc: 'Generate Prism Bloblang grammar from Connect JSON',
call: generateBloblangGrammar(path.join(__dirname, srcDir, 'js', 'vendor', 'prism', 'prism-bloblang.js')),
})
const buildWasmTask = createTask({
name: 'build:wasm',
desc: 'Build the WebAssembly (.wasm) file using Go and the go.mod in blobl-editor/wasm',
call: (done) => {
const wasmDir = path.join(__dirname, 'blobl-editor', 'wasm')
// Absolute path for the output file (go build -o requires a file path).
const wasmOutputPath = path.join(__dirname, srcDir, 'static', 'blobl.wasm')
const envVars = {
...process.env,
GOOS: 'js',
GOARCH: 'wasm',
}
const command = `go build -o "${wasmOutputPath}" .`
exec(command, { cwd: wasmDir, env: envVars }, (err, stdout, stderr) => {
if (err) {
log.error('Error building WASM:', stderr)
done(err)
return
}
log.info('WebAssembly built successfully:', stdout)
done()
})
},
})
const bundleBuildTask = createTask({
name: 'bundle:build',
call: series(cleanTask, lintTask, generateBloblangGrammarTask, buildWasmTask, bundleReactTask, compileWidgets, buildTask),
})
const bundlePackTask = createTask({
name: 'bundle:pack',
desc: 'Create a bundle of the staged UI assets for publishing',
call: task.pack(
destDir,
buildDir,
bundleName,
(bundlePath) => !process.env.CI && log(`Antora option: --ui-bundle-url=${bundlePath}`)
),
})
const bundleTask = createTask({
name: 'bundle',
desc: 'Clean, lint, build, and bundle the UI for publishing',
call: series(bundleBuildTask, bundlePackTask),
})
const packTask = createTask({
name: 'pack',
desc: '(deprecated; use bundle instead)',
call: series(bundleTask),
})
const buildPreviewPagesTask = createTask({
name: 'preview:build-pages',
call: task.buildPreviewPages(srcDir, previewSrcDir, previewDestDir, livereload),
})
const previewBuildTask = createTask({
name: 'preview:build',
desc: 'Process and stage the UI assets and generate pages for the preview',
call: series(buildWasmTask, bundleReactTask, buildTask, buildPreviewPagesTask),
})
const previewServeTask = createTask({
name: 'preview:serve',
call: task.serve(previewDestDir, serverConfig, () => watch([`${srcDir}/**/*`, `${previewSrcDir}/**/*`, `!${srcDir}/static/**`], previewBuildTask)),
})
const previewTask = createTask({
name: 'preview',
desc: 'Generate a preview site and launch a server to view it',
call: series(previewBuildTask, previewServeTask),
})
const testTask = createTask({
name: 'test',
desc: 'Run Bloblang playground tests (build WASM + run tests)',
call: (done) => {
const { spawn } = require('child_process')
const testProcess = spawn('node', ['tests/bloblang-playground/test-runner.js'], { stdio: 'inherit' })
testProcess.on('close', (code) => {
if (code === 0) {
log.info('✅ All tests passed!')
done()
} else {
done(new Error(`Tests failed with exit code ${code}`))
}
})
},
})
const testBuildTask = createTask({
name: 'test:build',
desc: 'Build WASM and run playground tests',
call: series(buildWasmTask, testTask),
})
const testQuickTask = createTask({
name: 'test:quick',
desc: 'Run playground tests with existing WASM (development)',
call: testTask,
})
module.exports = exportTasks(
bundleTask,
cleanTask,
lintTask,
formatTask,
generateBloblangGrammarTask,
buildWasmTask,
bundleReactTask,
buildTask,
bundlePackTask,
previewTask,
previewBuildTask,
packTask,
testTask,
testBuildTask,
testQuickTask
)