10 lines
379 B
Plaintext
10 lines
379 B
Plaintext
|
@Library('jgpl') _
|
||
|
webPipeline([
|
||
|
onBuildInstallShell:{->
|
||
|
return """
|
||
|
npm install url-loader --userconfig ${env.NPM_CONFIG_USERCONFIG} --no-package-lock
|
||
|
pnpm install -no-frozen-lockfile
|
||
|
pnpm run build || echo 'Ignore build error !!!'
|
||
|
"""
|
||
|
},
|
||
|
])
|