我的管道构建设置:
branches:
production:
- step:
name: Build and test JS.
image: node:8.9.3
script:
- npm install
- npm test
- npm run-script build
- step:
name: Build and test PHP.
image: php:7-fpm
script:
- echo "Here will be the Composer build and PHPUnit tests."
- step:
name: Deploy to FTP.
image: samueldebruyn/debian-git
script:
- apt-get update
- apt-get -qq install git-ftp
- git ftp push --user $FTP_USERNAME --passwd $FTP_PASSWORD ftp://$FTP_HOST
...问题是它构建没有错误但是我的服务器上没有标准的webpack输出js文件(应该出现在运行webpack的npm build
之后)。如何将输出js文件“放”到该构建的服务器上?请帮忙。
答案 0 :(得分:0)
我想您已经在过去的6个月中找到了解决方案...如果有人遇到同样的麻烦:这就是我的发现。
当模式设置为“生产”时,Bitbucket管道不会保存Webpack(^ 4.12.0)生成的内部版本。当构建处于开发模式(或“无”模式)时,一切工作均正常。
export default {
/*=========================================
= JAVASCRIPT FILES =
=========================================*/
// https://webpack.js.org/concepts/targets/
target: 'web',
// production, development, none
mode : 'none',