Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ jobs:
${{ runner.os }}-node-${{matrix.node-version}}-
- run: npm ci
- run: npm run bootstrap
- run: npm run build
- run: npm test
- name: Coveralls GitHub Action
uses: coverallsapp/github-action@master
Expand Down
33 changes: 31 additions & 2 deletions documentation/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"build": "lerna run build",
"lerna:pub": "lerna publish from-git",
"lerna:version": "lerna version",
"release": "npm run build && npm run lerna:version && npm lerna:pub",
"test": "npm run lint && npm run jest && npm run examples",
"lint": "npm run lint:ts && npm run lint:js",
"lint:fix": "npm run lint:ts -- --fix && npm runlint:js -- --fix",
Expand Down
2 changes: 1 addition & 1 deletion packages/fast-csv/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"main": "./build/src/index.js",
"types": "./build/src/index.d.ts",
"scripts": {
"prepare": "npm run build",
"prepublishOnly": "npm run build",
"build": "npm run clean && npm run compile",
"clean": "rm -rf ./build && rm -rf tsconfig.tsbuildinfo",
"compile": "tsc -p tsconfig.build.json"
Expand Down
2 changes: 1 addition & 1 deletion packages/format/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"directory": "packages/format"
},
"scripts": {
"prepare": "npm run build",
"prepublishOnly": "npm run build",
"build": "npm run clean && npm run compile",
"clean": "rm -rf ./build && rm -rf tsconfig.tsbuildinfo",
"compile": "tsc -p tsconfig.build.json"
Expand Down
2 changes: 1 addition & 1 deletion packages/parse/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"directory": "packages/parse"
},
"scripts": {
"prepare": "npm run build",
"prepublishOnly": "npm run build",
"build": "npm run clean && npm run compile",
"clean": "rm -rf ./build && rm -rf tsconfig.tsbuildinfo",
"compile": "tsc -p tsconfig.build.json"
Expand Down
12 changes: 6 additions & 6 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
"baseUrl": "./packages",
"composite": true,
"paths": {
"fast-csv": ["fast-csv"],
"@fast-csv/format": ["format"],
"@fast-csv/parse": ["parse"]
"fast-csv": ["fast-csv/src"],
"@fast-csv/format": ["format/src"],
"@fast-csv/parse": ["parse/src"]
}
},
"references": [
{"path": "./packages/fast-csv"},
{"path": "./packages/format"},
{"path": "./packages/parse"}
{"path": "./packages/fast-csv/tsconfig.build.json"},
{"path": "./packages/format/tsconfig.build.json"},
{"path": "./packages/parse/tsconfig.build.json"}
]
}