Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
63 lines
1.2 KiB
Plaintext
63 lines
1.2 KiB
Plaintext
/**
|
|
* @type {import('../../helper').OptionsSchema}
|
|
*/
|
|
module.exports = {
|
|
ignore: {
|
|
param: '--ignore',
|
|
type: 'array',
|
|
},
|
|
ignoreFile: {
|
|
param: '--ignore-file',
|
|
type: 'string',
|
|
},
|
|
dist: {
|
|
param: '--dist',
|
|
type: 'string',
|
|
},
|
|
decompress: {
|
|
param: '--decompress',
|
|
type: 'boolean',
|
|
},
|
|
rewrite: {
|
|
param: '--rewrite',
|
|
invertedParam: '--no-rewrite',
|
|
type: 'boolean',
|
|
},
|
|
sourceMapReference: {
|
|
invertedParam: '--no-sourcemap-reference',
|
|
type: 'boolean',
|
|
},
|
|
dedupe: {
|
|
invertedParam: '--no-dedupe',
|
|
type: 'boolean',
|
|
},
|
|
stripPrefix: {
|
|
param: '--strip-prefix',
|
|
type: 'array',
|
|
},
|
|
stripCommonPrefix: {
|
|
param: '--strip-common-prefix',
|
|
type: 'boolean',
|
|
},
|
|
validate: {
|
|
param: '--validate',
|
|
type: 'boolean',
|
|
},
|
|
urlPrefix: {
|
|
param: '--url-prefix',
|
|
type: 'string',
|
|
},
|
|
urlSuffix: {
|
|
param: '--url-suffix',
|
|
type: 'string',
|
|
},
|
|
ext: {
|
|
param: '--ext',
|
|
type: 'array',
|
|
},
|
|
useArtifactBundle: {
|
|
param: '--use-artifact-bundle',
|
|
type: 'boolean',
|
|
},
|
|
};
|