Skip to content

Commit

Permalink
Merge pull request #7 from markdalgleish/remove-grunt
Browse files Browse the repository at this point in the history
Use glob and fs instead of Grunt, fixes #2.
  • Loading branch information
tschaub committed Jun 25, 2014
2 parents bf3a532 + b190a60 commit f39a37e
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 9 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
before_install: npm install -g npm
language: node_js
node_js:
- "0.10"
Expand Down
21 changes: 14 additions & 7 deletions lib/index.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
var path = require('path');
var fs = require('fs');

var Q = require('q');
var wrench = require('wrench');
var _ = require('lodash');
var grunt = require('grunt');
var glob = require('glob');

var pkg = require('../package.json');
var git = require('./git');
Expand Down Expand Up @@ -70,23 +71,29 @@ exports.publish = function publish(config, done) {
// override defaults with any task options
var options = _.extend({}, defaults, config);

if (!grunt.file.isDir(options.base)) {
done(new Error('The "base" option must be an existing directory'));
try {
if (!fs.statSync(options.base).isDirectory()) {
done(new Error('The "base" option must be an existing directory'));
return;
}
} catch (err) {
done(err);
return;
}

var files = grunt.file.expand({
filter: 'isFile',
var files = glob.sync(options.src, {
cwd: options.base,
dot: options.dotfiles
}, options.src);
}).filter(function(file) {
return !fs.statSync(path.join(options.base, file)).isDirectory();
});

if (!Array.isArray(files) || files.length === 0) {
done(new Error('Files must be provided in the "src" property.'));
return;
}

var only = grunt.file.expand({cwd: options.base}, options.only);
var only = glob.sync(options.only, {cwd: options.base});

function log(message) {
if (!options.silent) {
Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,9 @@
"async": "0.2.9",
"wrench": "1.5.1",
"lodash": "~2.4.1",
"grunt": "~0.4.5"
"glob": "~4.0.2"
},
"devDependencies": {
"glob": "~3.2.9",
"mocha": "~1.18.2",
"jshint": "~2.4.4",
"chai": "~1.9.1"
Expand Down

0 comments on commit f39a37e

Please sign in to comment.