Skip to content

Commit dfab5d7

Browse files
committed
Removed unecessary build script.
1 parent 5ee5a41 commit dfab5d7

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

build.bat

Lines changed: 0 additions & 2 deletions
This file was deleted.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
{
22
"name": "data-forge-fs",
3-
"version": "0.0.2",
3+
"version": "0.0.3",
44
"description": "This library contains the file system extensions to Data-Forge that allow it to directly read and write CSV and JSON files in Node.js.",
55
"main": "build/index.js",
66
"types": "build/index.d.ts",
77
"scripts": {
88
"clean": "rm -rf build/*",
9-
"build": "build.bat",
9+
"build": "tsc",
1010
"clean-build": "rm -rf build/* && tsc",
1111
"build:watch": "tsc --watch",
1212
"clean-build:watch": "rm -rf build/* && tsc --watch",
1313
"test": "nyc mocha --opts ./src/test/mocha.opts",
1414
"test:watch": "nyc mocha --watch --opts ./src/test/mocha.opts",
1515
"api-docs": "typedoc --options typedoc.json --out docs/api ./src/index.ts",
16-
"prepublishOnly": "build.bat",
16+
"prepublishOnly": "npm run clean && npm run build",
1717
"coveralls": "nyc report --reporter=text-lcov | coveralls"
1818
},
1919
"repository": {

0 commit comments

Comments
 (0)