Skip to content

Commit 44f6679

Browse files
committed
Merge pull request #81 from xorvan/master
Implementing stylus middleware
2 parents 0284693 + ad3c971 commit 44f6679

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+46
-6
lines changed

Gruntfile.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ module.exports = function(grunt) {
1515
urlfunc: 'embedurl', // use embedurl('test.png') in our code to trigger Data URI embedding
1616
},
1717
files: {
18-
'dist/bootstrap.css': 'stylus/bootstrap.styl' // 1:1 compile
18+
'dist/bootstrap.css': 'bootstrap/index.styl' // 1:1 compile
1919
}
2020
},
2121

@@ -25,14 +25,14 @@ module.exports = function(grunt) {
2525
urlfunc: 'embedurl',
2626
},
2727
files: {
28-
'dist/theme.css': 'stylus/theme.styl' // 1:1 compile
28+
'dist/theme.css': 'bootstrap/theme.styl' // 1:1 compile
2929
}
3030
}
3131
},
3232

3333
watch: {
3434
css: {
35-
files: 'stylus/*.styl',
35+
files: 'bootstrap/**/*.styl',
3636
tasks: ['stylus'],
3737
options: {
3838
debounceDelay: 250

README.md

Lines changed: 31 additions & 2 deletions
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)