We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
kmc能否提供配置项,在生成依赖关系文件过程中,若依赖文件不存在,给出错误提示并中断构建流程?
8月26日构建某个项目的过程中,由于bower过程错误导致某个依赖包部分文件丢失
项目build过程中,kmc运行结果中不存在的依赖文件地址被写为绝对路径:
'pi/overlay/dialog': { requires: ['base', 'node', '/Users/***/work/pi/build/overlay/common.js']}
项目上线后,出现BUG
'pi/overlay/common': { requires: ['node', 'overlay', 'dd']}, 'pi/overlay/confirm': { requires: ['base', 'node', 'pi/overlay/common']}, 'pi/overlay/dialog': { requires: ['base', 'node', 'pi/overlay/common']}, 'pi/overlay/index': { requires: ['pi/overlay/alert', 'pi/overlay/confirm', 'pi/overlay/dialog', 'pi/overlay/index.css']}
kmc: { options: { packages : [ { name : 'pi', path : './build/', charset : 'utf-8', ignorePackageNameInUri: true } ], // 生成模块依赖关系表 depFilePath : 'build/mods.js', comboOnly : true, fixModuleName: true, comboMap : true }, main: { files: [ { // 这里指定项目根目录下所有文件为入口文件,自定义入口请自行添加 expand: true, cwd : './build/', src : [ '**/*.js'], dest : './build/' } ] } },
The text was updated successfully, but these errors were encountered:
No branches or pull requests
无效文件路径打包未进行提示
kmc能否提供配置项,在生成依赖关系文件过程中,若依赖文件不存在,给出错误提示并中断构建流程?
8月26日构建某个项目的过程中,由于bower过程错误导致某个依赖包部分文件丢失
项目build过程中,kmc运行结果中不存在的依赖文件地址被写为绝对路径:
项目上线后,出现BUG
The text was updated successfully, but these errors were encountered: