-
Notifications
You must be signed in to change notification settings - Fork 0
/
pipeline.yaml
53 lines (47 loc) · 1.51 KB
/
pipeline.yaml
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
packages:
- package: Custom.Template
files:
- Main.pcss
- Debug.pcss
- Main.js
- Debug.js
- Safelist.txt
# - package: Vendor.Foo
# files: Main.js
# - package: Vendor.Theme
esbuild:
# Set Neos Flow settings as FLOW variable. If `true` all the settings are passed.
# It is recommended to set it to a path (e.g. Flownative.Sentry)
# This is the same as passing --path to the ./flow configuration:show command
# In Javascript the value is available under the variable FLOW
# (e.g. FLOW.Flownative.Sentry)
defineFlowSettings: false
# Set options for esbuild
options:
# Define a string (for only one function) or an array with functions who can be removed on production builds.
# eg. ['console.log','console.info']
# https://esbuild.github.io/api/#pure
pure: null
# The log level can be changed to prevent esbuild from printing warning and/or error messages to the terminal.
# https://esbuild.github.io/api/#log-level
logLevel: info
# A "legal comment" is considered to be any statement-level comment
# that contains @license or @preserve or that starts with //! or /*!.
# https://esbuild.github.io/api/#legal-comments
legalComments: linked
plugins:
vue:
enable: false
options: null
svelte:
enable: false
options:
compilerOptions:
css: true
babel:
enable: false
options: null
# additionalPlugins:
# esbuild-envfile-plugin:
# functionName: setup
# options: null