• 此项目
    • 正在载入...
  • 登录

wlxxpt / customAnalysis · 文件

转到一个项目

GitLab

  • 转到群组
  • 项目
  • 活动
  • 文件
  • 提交
  • 管道 0
  • 构建 0
  • 图表
  • 里程碑
  • 问题 0
  • 合并请求 0
  • 成员
  • 标记
  • 维基
  • 派生
  • 网络
  • 创建新的问题
93842f13dbab77292c7ebe09f9ee3db569b703ec
  • customAnalysis
  • src
  • main
  • resources
  • static
  • datetimepicker
  • Gruntfile.js
  • update: ...
    93842f13
    1. 增加舱单统计接口和前端静态文件.
    2. 更新预配原始相关类文件,以配合统计.
    3. 增加预配批量删除处理.
    4. 增加批量删除日志接口.
    5. 优化swagger-ui配置及访问安全.
    6. 增加yml文件swagger-ui配置信息.
    7. 更改yml文件对于thymeleaf的XML模式的限制取消,增强对前端html模版和报文xml模版的适应性.
    
    Signed-off-by: mrz <17966059@qq.com>
    朱兆平 在
    6 months ago
    提交 浏览文件
Gruntfile.js 460 字节
原文件 审查 历史 永久链接
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
module.exports = (grunt) => {

  require('load-grunt-tasks')(grunt)

  grunt.initConfig({
    pkg: grunt.file.readJSON('package.json'),
    jshint: {
      options: {
        jshintrc: '.jshintrc'
      },
      all: {
        src: ['./js/bootstrap-datetimepicker.js']
      }
    },
    versioncheck: {
      target: {
        options: {
          hideUpToDate: true
        }
      }
    }
  })

  grunt.registerTask('default', ['jshint', 'versioncheck'])
}