Compare commits

...

4 Commits

Author SHA1 Message Date
12500a0900 0.0.5 2015-11-03 20:22:21 +01:00
36371d9469 updated test 2015-11-03 20:22:16 +01:00
4e9874a639 0.0.4 2015-11-03 20:19:52 +01:00
e55e30bdb3 updated test 2015-11-03 20:19:46 +01:00
4 changed files with 8 additions and 4 deletions

View File

@ -1,6 +1,6 @@
{
"name": "smartfile",
"version": "0.0.3",
"version": "0.0.5",
"description": "offers smart ways to work with files in nodejs",
"main": "index.js",
"scripts": {

View File

@ -1,2 +1,4 @@
/// <reference path="typings/tsd.d.ts" />
var smartfile = require("./index.js");
console.log(smartfile.readFileToString("./test/mytest.txt"));
var pr = require("pushrocks");
pr.beautylog.info(smartfile.readFileToString("./test/mytest.txt"));

View File

@ -1 +1 @@
This is some test text. If this is displayed when running "npm test", then the test has succeeded.
This is some test text stored in ./test/mytest.txt -> If this is displayed when running "npm test", then the test has succeeded.

View File

@ -1,2 +1,4 @@
/// <reference path="typings/tsd.d.ts" />
var smartfile = require("./index.js");
console.log(smartfile.readFileToString("./test/mytest.txt"));
var pr = require("pushrocks")
pr.beautylog.info(smartfile.readFileToString("./test/mytest.txt"));