@cenk1cenk2/md-printer 2.2.69 → 2.2.71
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/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cenk1cenk2/md-printer",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.71",
|
|
4
4
|
"description": "A markdown printer.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -68,37 +68,37 @@
|
|
|
68
68
|
"cenk1cenk2"
|
|
69
69
|
],
|
|
70
70
|
"dependencies": {
|
|
71
|
-
"@cenk1cenk2/oclif-common": "^6.3.
|
|
72
|
-
"@listr2/manager": "^2.0.
|
|
73
|
-
"@oclif/core": "^3.
|
|
74
|
-
"@oclif/plugin-help": "^6.0.
|
|
71
|
+
"@cenk1cenk2/oclif-common": "^6.3.9",
|
|
72
|
+
"@listr2/manager": "^2.0.1",
|
|
73
|
+
"@oclif/core": "^3.18.1",
|
|
74
|
+
"@oclif/plugin-help": "^6.0.12",
|
|
75
75
|
"chokidar": "^3.5.3",
|
|
76
76
|
"fs-extra": "^11.2.0",
|
|
77
77
|
"gray-matter": "^4.0.3",
|
|
78
|
-
"listr2": "^8.0.
|
|
78
|
+
"listr2": "^8.0.1",
|
|
79
79
|
"md-to-pdf": "^5.2.4",
|
|
80
80
|
"nunjucks": "^3.2.4"
|
|
81
81
|
},
|
|
82
82
|
"devDependencies": {
|
|
83
|
-
"@cenk1cenk2/cz-cc": "^1.7.
|
|
84
|
-
"@cenk1cenk2/eslint-config": "^2.7.
|
|
85
|
-
"@swc/core": "^1.3.
|
|
83
|
+
"@cenk1cenk2/cz-cc": "^1.7.4",
|
|
84
|
+
"@cenk1cenk2/eslint-config": "^2.7.37",
|
|
85
|
+
"@swc/core": "^1.3.106",
|
|
86
86
|
"@tailwindcss/forms": "^0.5.7",
|
|
87
87
|
"@tailwindcss/typography": "^0.5.10",
|
|
88
88
|
"@types/config": "^3.3.3",
|
|
89
89
|
"@types/fs-extra": "^11.0.4",
|
|
90
|
-
"@types/node": "^20.
|
|
90
|
+
"@types/node": "^20.11.6",
|
|
91
91
|
"@types/nunjucks": "^3.2.6",
|
|
92
|
-
"eslint": "^8.
|
|
92
|
+
"eslint": "^8.56.0",
|
|
93
93
|
"execa": "^8.0.1",
|
|
94
94
|
"globby": "^14.0.0",
|
|
95
95
|
"lint-staged": "^15.2.0",
|
|
96
|
-
"oclif": "^4.
|
|
97
|
-
"postcss": "^8.4.
|
|
98
|
-
"prettier": "^3.
|
|
96
|
+
"oclif": "^4.3.9",
|
|
97
|
+
"postcss": "^8.4.33",
|
|
98
|
+
"prettier": "^3.2.4",
|
|
99
99
|
"simple-git-hooks": "^2.9.0",
|
|
100
100
|
"source-map-support": "^0.5.21",
|
|
101
|
-
"tailwindcss": "^3.
|
|
101
|
+
"tailwindcss": "^3.4.1",
|
|
102
102
|
"theme-colors": "^0.1.0",
|
|
103
103
|
"ts-node": "^10.9.2",
|
|
104
104
|
"tsconfig-paths": "^4.2.0",
|
|
@@ -7,7 +7,7 @@ html {
|
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
/*
|
|
10
|
-
! tailwindcss v3.
|
|
10
|
+
! tailwindcss v3.4.1 | MIT License | https://tailwindcss.com
|
|
11
11
|
*/
|
|
12
12
|
|
|
13
13
|
/*
|
|
@@ -40,9 +40,11 @@ html {
|
|
|
40
40
|
4. Use the user's configured `sans` font-family by default.
|
|
41
41
|
5. Use the user's configured `sans` font-feature-settings by default.
|
|
42
42
|
6. Use the user's configured `sans` font-variation-settings by default.
|
|
43
|
+
7. Disable tap highlights on iOS
|
|
43
44
|
*/
|
|
44
45
|
|
|
45
|
-
html
|
|
46
|
+
html,
|
|
47
|
+
:host {
|
|
46
48
|
line-height: 1.5;
|
|
47
49
|
/* 1 */
|
|
48
50
|
-webkit-text-size-adjust: 100%;
|
|
@@ -58,6 +60,8 @@ html {
|
|
|
58
60
|
/* 5 */
|
|
59
61
|
font-variation-settings: normal;
|
|
60
62
|
/* 6 */
|
|
63
|
+
-webkit-tap-highlight-color: transparent;
|
|
64
|
+
/* 7 */
|
|
61
65
|
}
|
|
62
66
|
|
|
63
67
|
/*
|