Skip to content

Commit

Permalink
build sass > path is now relative
Browse files Browse the repository at this point in the history
Signed-off-by: Nick Jonas <njonas45@gmail.com>
  • Loading branch information
nick-jonas committed Jan 25, 2013
1 parent be31153 commit 06f5431
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .npmignore
@@ -1,2 +1,2 @@
# package.json definition for template
lib/templates/create/package.json
dev_bed
dev_scripts
2 changes: 1 addition & 1 deletion bin/assemble.js
Expand Up @@ -9,7 +9,7 @@ var commands = require('../lib/commands'),

// initialize program
program
.version('0.2.1')
.version('0.2.3')
.option('-w, --watch', 'Watch an AssembleJS project')
.option('-b, --build', 'Build production-ready files')
.parse(process.argv);
Expand Down
2 changes: 1 addition & 1 deletion lib/commands/builder.js
Expand Up @@ -6,7 +6,7 @@ var _ = require('lodash'),
cheerio = require('cheerio'),
current_directory = path.normalize(process.cwd()),
index_file = path.join(current_directory, 'www_public/index.html'),
sass_dir = path.join(current_directory, 'app/sass/'),
sass_dir = path.relative(current_directory, 'app/sass/'),
op,
currentOp = 0;

Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "assemblejs",
"preferGlobal": "true",
"version": "0.2.1",
"version": "0.2.3",
"author": "Nick Jonas <nick@workofjonas.com>",
"description": "A fairly light AMD-style boilerplate for rapid development, using RequireJS, SASS, Backbone, and Handlebars",
"contributors": [
Expand Down

0 comments on commit 06f5431

Please sign in to comment.