Skip to content
This repository has been archived by the owner on Nov 17, 2020. It is now read-only.

Commit

Permalink
Remove rfr node module
Browse files Browse the repository at this point in the history
Due to the simple project file hierarchy, node-rfr doesn't add much value and also causes issues such as #59
  • Loading branch information
mpetrovich committed Dec 16, 2018
1 parent 3720a00 commit a352206
Show file tree
Hide file tree
Showing 9 changed files with 730 additions and 746 deletions.
3 changes: 1 addition & 2 deletions bin/stylemark
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,12 @@

'use strict';

var rfr = require('rfr');
var args = require('yargs').argv;
var chokidar = require('chokidar');
var bs = require('browser-sync').create();
var _ = require('lodash');
var path = require('path');
var stylemark = rfr('src/stylemark');
var stylemark = require('../src/stylemark');

var input = args.i;
var output = args.o;
Expand Down
3 changes: 1 addition & 2 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
'use strict';

var rfr = require('rfr');
var stylemark = rfr('src/stylemark');
var stylemark = require('./src/stylemark');

module.exports = stylemark;
Loading

0 comments on commit a352206

Please sign in to comment.