Skip to content

Commit 546fe71

Browse files
committed
Fix path dependency for building local project
1 parent b99962c commit 546fe71

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Gruntfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ module.exports = function(grunt) {
1111
stylus: {
1212
options: {
1313
compress: false,
14-
paths: ['stylus'],
14+
paths: ['stylus', __dirname],
1515
urlfunc: 'embedurl', // use embedurl('test.png') in our code to trigger Data URI embedding
1616
},
1717
bootstrap: {

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bootstrap-stylus",
3-
"version": "5.0.0",
3+
"version": "5.0.1",
44
"main": "bootstrap/index.styl",
55
"description": "A port of Bootstrap 3.3.5 to Stylus",
66
"ignore": [

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"bootstrap",
1010
"stylus"
1111
],
12-
"version": "5.0.0",
12+
"version": "5.0.1",
1313
"devDependencies": {
1414
"grunt": "~0.4.5",
1515
"stylus": "~0.47.0",

0 commit comments

Comments
 (0)