From ee6981703815ddaa5c8800f61fea612ad4f69c20 Mon Sep 17 00:00:00 2001 From: PhilKunz Date: Sat, 16 Jan 2016 14:20:14 +0100 Subject: [PATCH] create README-dev --- README-dev.md | 1 + README.md | 9 ++++++--- ts/index.js | 2 -- ts/npmts.default.js | 1 + ts/npmts.default.js.map | 1 + 5 files changed, 9 insertions(+), 5 deletions(-) create mode 100644 README-dev.md create mode 100644 ts/npmts.default.js create mode 100644 ts/npmts.default.js.map diff --git a/README-dev.md b/README-dev.md new file mode 100644 index 0000000..8b12ba3 --- /dev/null +++ b/README-dev.md @@ -0,0 +1 @@ +# README-dev \ No newline at end of file diff --git a/README.md b/README.md index fde94d1..c421e0d 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # npmts -Write npm modules with TypeScript withour hassle. +Write npm modules with TypeScript without hassle. ## How to use npmts @@ -19,5 +19,8 @@ Then use it in package.json's script section to trigger a build: ``` ### Default behaviour -by default npmts looks in your `./ts/` directory for an `index.ts` and a `test.ts` that will compile to -./index.js and ./test.js \ No newline at end of file +by default npmts looks for an `./ts/index.ts` and a `./ts/test.ts` that will compile to +`./index.js` and `./test.js` + +## Dev Readme +There is a dev [README-dev.md](README-dev.md) in the repo. \ No newline at end of file diff --git a/ts/index.js b/ts/index.js index 3e7579b..297f458 100644 --- a/ts/index.js +++ b/ts/index.js @@ -10,8 +10,6 @@ var paths = {}; paths.cwd = plugins.smartcli.get.cwd().path; paths.indexTS = plugins.path.join(paths.cwd, "ts/index.ts"); paths.testTS = plugins.path.join(paths.cwd, "ts/test.ts"); - - plugins.gulp.task("indexTS", function () { plugins.gulp.src(paths.indexTS) .pipe(plugins.gulpTypeScript({ diff --git a/ts/npmts.default.js b/ts/npmts.default.js new file mode 100644 index 0000000..a1e4c03 --- /dev/null +++ b/ts/npmts.default.js @@ -0,0 +1 @@ +//# sourceMappingURL=npmts.default.js.map \ No newline at end of file diff --git a/ts/npmts.default.js.map b/ts/npmts.default.js.map new file mode 100644 index 0000000..9af2652 --- /dev/null +++ b/ts/npmts.default.js.map @@ -0,0 +1 @@ +{"version":3,"file":"npmts.default.js","sourceRoot":"","sources":["npmts.default.ts"],"names":[],"mappings":""} \ No newline at end of file