Skip to content

Commit 3b18354

Browse files
authored
Merge pull request #313 from C2FO/fix-package-links
Fix package.json homepage links
2 parents 86a621c + 41503ba commit 3b18354

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

History.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# v4.0.1
2+
3+
* [FIXED] package.json homepage links
4+
* [ADDED] version npm script
5+
16
# v4.0.0
27

38
* Migrated from mocha to jest

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
"bootstrap": "lerna bootstrap --hoist",
66
"clean": "lerna run clean",
77
"build": "lerna run build",
8-
"pub": "lerna publish",
8+
"pub": "lerna publish from-git",
9+
"version": "npx lerna version --tag-version-prefix=v",
910
"test": "npm run lint && npm run jest && npm run examples",
1011
"lint": "eslint --ext=.ts,.js .",
1112
"jest": "jest --coverage",

packages/fast-csv/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"csv writer",
2929
"CSV"
3030
],
31-
"homepage": "http://c2fo.github.com/fast-csv/index.html",
31+
"homepage": "http://c2fo.github.com/fast-csv",
3232
"author": "Doug Martin",
3333
"license": "MIT",
3434
"engines": {

packages/format/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"write"
99
],
1010
"author": "doug-martin <[email protected]>",
11-
"homepage": "http://c2fo.github.com/fast-csv/index.html/tree/master/packages/format#readme",
11+
"homepage": "http://c2fo.github.com/fast-csv/packages/format",
1212
"license": "ISC",
1313
"main": "build/src/index.js",
1414
"types": "build/src/index.d.ts",

packages/parse/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"parser"
1010
],
1111
"author": "doug-martin <[email protected]>",
12-
"homepage": "http://c2fo.github.com/fast-csv/index.html/tree/master/packages/parse#readme",
12+
"homepage": "http://c2fo.github.com/fast-csv/packages/parse",
1313
"license": "MIT",
1414
"main": "build/src/index.js",
1515
"types": "build/src/index.d.ts",

0 commit comments

Comments
 (0)