Portal Spring Boot version Hibernate implementation
[portal.git] / ecomp-portal-FE-os / Gruntfile.js
index 812fc80..6bb5102 100644 (file)
@@ -280,6 +280,7 @@ module.exports = function (grunt) {
                         '<%= yeoman.dist %>/public/{,*/}*.css',
                         '<%= yeoman.dist %>/public/assets/images/{,*/}*.{png,jpg,jpeg,gif,webp,svg}',
                         '<%= yeoman.dist %>/public/assets/fonts/*',
+                        '<%= yeoman.dist %>/public/assets/i18n/{,*/}*.{json}',
                         '!<%= yeoman.dist %>/public/assets/images/tmp/*'
                     ]
                 }
@@ -326,6 +327,16 @@ module.exports = function (grunt) {
                 }]
             }
         },
+        jsonmin: {
+            dist: {
+                files: [{
+                    expand: true,
+                    cwd: '<%= yeoman.client %>/assets/i18n',
+                    src: '{,*/}*.{json}',
+                    dest: '<%= yeoman.dist %>/public/assets/i18n'
+                }]
+            }
+        },
 
         svgmin: {
             dist: {
@@ -405,6 +416,7 @@ module.exports = function (grunt) {
                         'bower_components/**/*',
                         'bower_components_external/**/*',
                         'assets/images/**/*',
+                        'assets/i18n/**/*',
                         'assets/fonts/**/*',
                         'index.html'
                     ]
@@ -413,6 +425,14 @@ module.exports = function (grunt) {
                     cwd: '.tmp/images',
                     dest: '<%= yeoman.dist %>/public/assets/images',
                     src: ['generated/*']
+                }, {
+                    expand: true,
+                    cwd: '.tmp/i18n',
+                    dest: '<%= yeoman.dist %>/public/assets/i18n',
+                    src: [
+                        'CN.json',
+                        'EN.json'
+                    ]
                 }, {
                     expand: true,
                     dest: '<%= yeoman.dist %>',