Skip to content

Commit

Permalink
Don't run npm-install grunt task
Browse files Browse the repository at this point in the history
  • Loading branch information
Gideon Thomas committed Feb 14, 2017
1 parent ad749b6 commit 26415e9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.json
Expand Up @@ -31,7 +31,7 @@
"no-multi-str": 2,
"no-fallthrough": 2,
"no-proto": 2,
"no-script-url": 2,
"no-script-url": 1,
"no-shadow": 0,
"no-shadow-restricted-names": 2,
"no-new-func": 2,
Expand Down
2 changes: 1 addition & 1 deletion Gruntfile.js
Expand Up @@ -660,7 +660,7 @@ module.exports = function (grunt) {
/*'cssmin',*/
/*'uglify',*/
'copy:dist',
'npm-install',
// 'npm-install',
'cleanempty',
'usemin',
'build-config'
Expand Down
2 changes: 1 addition & 1 deletion templates/strings.template
Expand Up @@ -4,6 +4,6 @@

define({
{% for key, string in localizedStrings %}
"{{ key }}": "{{ string | dump }}"{{ "" if loop.last else "," }}
"{{ key }}": "{{ string | replace('\n', '\\n') }}"{{ "" if loop.last else "," }}
{%- endfor %}
});

0 comments on commit 26415e9

Please sign in to comment.