Compare commits
8 Commits
Author | SHA1 | Date | |
---|---|---|---|
55ac57a122 | |||
7da57901dd | |||
12500a0900 | |||
36371d9469 | |||
4e9874a639 | |||
e55e30bdb3 | |||
44aed02dd3 | |||
8d8d7e7ff4 |
16
index.js
16
index.js
@ -1,10 +1,12 @@
|
||||
/// <reference path="typings/tsd.d.ts" />
|
||||
var through = require("through2");
|
||||
var path = require("path");
|
||||
module.exports = function (jadeTemplate, mojo) {
|
||||
if (mojo === void 0) { mojo = undefined; }
|
||||
return through.obj(function (file, enc, cb) {
|
||||
//run callback function to signal end of plugin process.
|
||||
return cb(null, file);
|
||||
});
|
||||
var fs = require("fs");
|
||||
var smartfile = {
|
||||
//read File to string
|
||||
readFileToString: function (filePath) {
|
||||
var fileString;
|
||||
fileString = fs.readFileSync(filePath, "utf8");
|
||||
return fileString;
|
||||
}
|
||||
};
|
||||
module.exports = smartfile;
|
||||
|
@ -1,10 +1,10 @@
|
||||
{
|
||||
"name": "smartfile",
|
||||
"version": "0.0.2",
|
||||
"version": "0.0.6",
|
||||
"description": "offers smart ways to work with files in nodejs",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "(cd ts/compile && node compile.js)",
|
||||
"test": "(cd ts/compile && node compile.js) && (node test.js)",
|
||||
"reinstall": "(rm -r node_modules && npm install)",
|
||||
"release": "(git pull origin master && npm version patch && git push origin master && git checkout release && git merge master && git push origin release && git checkout master)",
|
||||
"startdev": "(git checkout master && git pull origin master)"
|
||||
@ -24,10 +24,11 @@
|
||||
},
|
||||
"homepage": "https://github.com/pushrocks/smartfile",
|
||||
"dependencies": {
|
||||
"pushrocks": "^1.0.18"
|
||||
"beautylog": "^1.0.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"gulp": "3.9.0",
|
||||
"gulp-typescript": "2.9.2"
|
||||
"gulp-typescript": "2.9.2",
|
||||
"pushrocks": "^1.0.19"
|
||||
}
|
||||
}
|
||||
|
4
test.js
Normal file
4
test.js
Normal file
@ -0,0 +1,4 @@
|
||||
/// <reference path="typings/tsd.d.ts" />
|
||||
var smartfile = require("./index.js");
|
||||
var beautylog = require("beautylog")("os");
|
||||
beautylog.info(smartfile.readFileToString("./test/mytest.txt"));
|
1
test/mytest.txt
Normal file
1
test/mytest.txt
Normal file
@ -0,0 +1 @@
|
||||
This is some test text stored in ./test/mytest.txt -> If this is displayed when running "npm test", then the test has succeeded.
|
@ -12,7 +12,16 @@ gulp.task('compileTS', function() {
|
||||
return stream;
|
||||
});
|
||||
|
||||
gulp.task('default',['compileTS'], function() {
|
||||
gulp.task('compileTestTS', function() {
|
||||
var stream = gulp.src('../test.ts')
|
||||
.pipe(gulpTypescript({
|
||||
out: "test.js"
|
||||
}))
|
||||
.pipe(gulp.dest("../../"));
|
||||
return stream;
|
||||
});
|
||||
|
||||
gulp.task('default',['compileTS','compileTestTS'], function() {
|
||||
pr.beautylog.success('Typescript compiled');
|
||||
});
|
||||
|
||||
|
19
ts/index.ts
19
ts/index.ts
@ -1,12 +1,15 @@
|
||||
/// <reference path="typings/tsd.d.ts" />
|
||||
var through = require("through2");
|
||||
var path = require("path");
|
||||
var fs = require("fs");
|
||||
|
||||
module.exports = (jadeTemplate,mojo = undefined) => {
|
||||
|
||||
return through.obj((file, enc, cb) => {
|
||||
|
||||
//run callback function to signal end of plugin process.
|
||||
return cb(null, file);
|
||||
});
|
||||
var smartfile:any = {
|
||||
//read File to string
|
||||
readFileToString: (filePath) => {
|
||||
var fileString;
|
||||
fileString = fs.readFileSync(filePath, "utf8");
|
||||
return fileString;
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
module.exports = smartfile;
|
||||
|
4
ts/test.ts
Normal file
4
ts/test.ts
Normal file
@ -0,0 +1,4 @@
|
||||
/// <reference path="typings/tsd.d.ts" />
|
||||
var smartfile = require("./index.js");
|
||||
var beautylog = require("beautylog")("os");
|
||||
beautylog.info(smartfile.readFileToString("./test/mytest.txt"));
|
Reference in New Issue
Block a user