@cenk1cenk2/md-printer 2.6.0 → 2.6.1
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/dist/commands/index.js +1 -2
- package/dist/constants/index.js +1 -1
- package/oclif.manifest.json +1 -1
- package/package.json +2 -2
package/dist/commands/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { OUTPUT_FILE_ACCEPTED_TYPES } from "../constants/file.constants.js";
|
|
2
1
|
import { RequiredTemplateFiles, TEMPLATE_DIRECTORY, TemplateFiles } from "../constants/template.constants.js";
|
|
2
|
+
import { OUTPUT_FILE_ACCEPTED_TYPES } from "../constants/file.constants.js";
|
|
3
3
|
import "../constants/index.js";
|
|
4
4
|
import tailwind from "@tailwindcss/postcss";
|
|
5
5
|
import { watch } from "chokidar";
|
|
@@ -147,7 +147,6 @@ var MDPrinter = class extends Command {
|
|
|
147
147
|
this.logger.info("Waiting for the next change.");
|
|
148
148
|
return this.runMd2Pdf(ctx$1).catch((err) => {
|
|
149
149
|
this.logger.error(err);
|
|
150
|
-
throw err;
|
|
151
150
|
});
|
|
152
151
|
});
|
|
153
152
|
return this.runMd2Pdf(ctx);
|
package/dist/constants/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { OUTPUT_FILE_ACCEPTED_TYPES } from "./file.constants.js";
|
|
2
1
|
import { RequiredTemplateFiles, TEMPLATE_DIRECTORY, TemplateFiles } from "./template.constants.js";
|
|
2
|
+
import { OUTPUT_FILE_ACCEPTED_TYPES } from "./file.constants.js";
|
|
3
3
|
|
|
4
4
|
export { OUTPUT_FILE_ACCEPTED_TYPES, RequiredTemplateFiles, TEMPLATE_DIRECTORY, TemplateFiles };
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cenk1cenk2/md-printer",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.1",
|
|
4
4
|
"description": "A markdown printer.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"dev": "./bin/dev.js",
|
|
18
18
|
"start": "./bin/run.js",
|
|
19
19
|
"build": "tsdown",
|
|
20
|
-
"dev:start": "tsdown --watch",
|
|
20
|
+
"dev:start": "tsdown --watch src/",
|
|
21
21
|
"clean": "rimraf oclif.manifset.json",
|
|
22
22
|
"format": "prettier --write src/ --log-level warn && eslint --fix",
|
|
23
23
|
"lint": "eslint",
|