Skip to content
This repository was archived by the owner on Apr 28, 2025. It is now read-only.

Commit f3c7e52

Browse files
committed
Changed core temp file references in Grunt config to use templates
1 parent 147c59c commit f3c7e52

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Gruntfile.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ module.exports = function(grunt) {
9595
dist: {
9696
src: [
9797
'src/intro.js',
98-
'<%= temppath %>/core.js',
98+
'<%= concat.core.dest %>',
9999
'src/outro.js'
100100
],
101101
dest: '<%= buildpath %>/<%= files.cat %>',
@@ -107,8 +107,8 @@ module.exports = function(grunt) {
107107
},
108108
indent: {
109109
js: {
110-
src: [ '<%= temppath %>/core.js' ],
111-
dest: '<%= temppath %>/core.js',
110+
src: [ '<%= concat.core.dest %>' ],
111+
dest: '<%= concat.core.dest %>',
112112
options: {
113113
change: 1
114114
}

0 commit comments

Comments
 (0)