writr 1.6.7 → 1.6.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +17 -17
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "writr",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.8",
|
|
4
4
|
"description": "A Simple to Use Markdown Blog",
|
|
5
5
|
"main": "./dist/index",
|
|
6
6
|
"types": "./dist/index",
|
|
@@ -25,13 +25,13 @@
|
|
|
25
25
|
],
|
|
26
26
|
"scripts": {
|
|
27
27
|
"watch": "tsc -w -p .",
|
|
28
|
-
"clean-all": "
|
|
29
|
-
"clean": "rm -rf ./dist &&
|
|
28
|
+
"clean-all": "npm run clean && rm -rf node_modules && rm -rf coverage && rm -rf package-lock.json",
|
|
29
|
+
"clean": "rm -rf ./dist && npm run clean-output",
|
|
30
30
|
"clean-output": "rm -rf ./blog_output",
|
|
31
|
-
"compile": "
|
|
32
|
-
"build": "
|
|
33
|
-
"test": "jest --coverage &&
|
|
34
|
-
"test-output": "
|
|
31
|
+
"compile": "npm run clean && tsc -p .",
|
|
32
|
+
"build": "npm run test && npm run compile",
|
|
33
|
+
"test": "jest --coverage && npm run clean-output",
|
|
34
|
+
"test-output": "npm run compile && node ./bin/writr -p ./blog_example"
|
|
35
35
|
},
|
|
36
36
|
"bin": {
|
|
37
37
|
"writr": "./bin/writr"
|
|
@@ -41,32 +41,32 @@
|
|
|
41
41
|
"cheerio": "^1.0.0-rc.10",
|
|
42
42
|
"commander": "^8.3.0",
|
|
43
43
|
"del": "^6.0.0",
|
|
44
|
-
"ecto": "^1.1.
|
|
44
|
+
"ecto": "^1.1.1",
|
|
45
45
|
"feed": "^4.2.2",
|
|
46
46
|
"fs-extra": "^10.0.0",
|
|
47
47
|
"gray-matter": "^4.0.3",
|
|
48
48
|
"helper-date": "^1.0.1",
|
|
49
49
|
"keyv": "^4.0.4",
|
|
50
|
-
"luxon": "^2.
|
|
51
|
-
"parse-json": "^6.0.
|
|
50
|
+
"luxon": "^2.2.0",
|
|
51
|
+
"parse-json": "^6.0.2",
|
|
52
52
|
"striptags": "^3.2.0",
|
|
53
53
|
"winston": "^3.3.3"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
56
|
"@types/array-sort": "^1.0.0",
|
|
57
57
|
"@types/fs-extra": "^9.0.13",
|
|
58
|
-
"@types/jest": "^27.0.
|
|
58
|
+
"@types/jest": "^27.0.3",
|
|
59
59
|
"@types/keyv": "^3.1.3",
|
|
60
|
-
"@types/luxon": "^2.0.
|
|
61
|
-
"@types/node": "^
|
|
60
|
+
"@types/luxon": "^2.0.8",
|
|
61
|
+
"@types/node": "^17.0.1",
|
|
62
62
|
"@types/parse-json": "^4.0.0",
|
|
63
63
|
"@types/winston": "^2.3.8",
|
|
64
64
|
"codecov": "^3.8.3",
|
|
65
|
-
"jest": "^27.
|
|
66
|
-
"source-map-support": "^0.5.
|
|
67
|
-
"ts-jest": "^27.
|
|
65
|
+
"jest": "^27.4.5",
|
|
66
|
+
"source-map-support": "^0.5.21",
|
|
67
|
+
"ts-jest": "^27.1.2",
|
|
68
68
|
"ts-node": "^10.4.0",
|
|
69
|
-
"typescript": "^4.5.
|
|
69
|
+
"typescript": "^4.5.4"
|
|
70
70
|
},
|
|
71
71
|
"files": [
|
|
72
72
|
"dist",
|