Skip to content

Commit

Permalink
Fix adobe#533 - Make sure string files are updated on staging
Browse files Browse the repository at this point in the history
  • Loading branch information
Gideon Thomas committed Feb 29, 2016
1 parent 8682121 commit d90eb2f
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ module.exports = function (grunt) {
cwd: 'src/',
src: [
/* static files */
'nls/{,*/}*.js',
'xorigin.js',
'dependencies.js',
'thirdparty/requirejs/require.js',
Expand All @@ -92,6 +91,14 @@ module.exports = function (grunt) {
],
dest: 'dist/'
}]
},
nls: {
files: [{
expand: true,
cwd: 'dist/nls',
src: [ '**/*.js' ],
dest: 'dist/nls'
}]
}
},
copy: {
Expand Down

0 comments on commit d90eb2f

Please sign in to comment.