@cenk1cenk2/md-printer 2.12.0 → 2.12.2

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.
@@ -91,7 +91,7 @@ var MDPrinter = class extends Command {
91
91
  }
92
92
  async run() {
93
93
  this.tasks.add([{ task: async (ctx) => {
94
- if (!this.flags.stdout && this.args.file) {
94
+ if (this.args.file) {
95
95
  ctx.file = isAbsolute(this.args.file) ? this.args.file : join(process.cwd(), this.args.file);
96
96
  if (!this.fs.exists(ctx.file)) throw new Error(`File does not exists: ${ctx.file}`);
97
97
  this.logger.info("Loading file: %s", ctx.file);
@@ -151,5 +151,5 @@
151
151
  "enableJsonFlag": false
152
152
  }
153
153
  },
154
- "version": "2.11.3"
154
+ "version": "2.12.1"
155
155
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cenk1cenk2/md-printer",
3
- "version": "2.12.0",
3
+ "version": "2.12.2",
4
4
  "description": "A markdown printer.",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
@@ -72,7 +72,7 @@
72
72
  "dependencies": {
73
73
  "@cenk1cenk2/oclif-common": "^6.4.12",
74
74
  "@listr2/manager": "^3.0.3",
75
- "@oclif/core": "^4.5.2",
75
+ "@oclif/core": "^4.5.3",
76
76
  "@oclif/plugin-help": "^6.2.32",
77
77
  "@tailwindcss/forms": "^0.5.10",
78
78
  "@tailwindcss/postcss": "^4.1.13",
@@ -94,7 +94,7 @@
94
94
  },
95
95
  "devDependencies": {
96
96
  "@cenk1cenk2/cz-cc": "^2.1.5",
97
- "@cenk1cenk2/eslint-config": "^3.1.67",
97
+ "@cenk1cenk2/eslint-config": "^3.1.68",
98
98
  "@types/config": "^3.3.5",
99
99
  "@types/fs-extra": "^11.0.4",
100
100
  "@types/node": "^24.3.1",
@@ -112,7 +112,7 @@
112
112
  "tpm": "^1.4.14",
113
113
  "ts-node": "^10.9.2",
114
114
  "tsconfig-paths": "^4.2.0",
115
- "tsdown": "^0.14.2",
115
+ "tsdown": "^0.15.0",
116
116
  "typescript": "^5.9.2"
117
117
  },
118
118
  "config": {
@@ -120,5 +120,5 @@
120
120
  "path": "./node_modules/@cenk1cenk2/cz-cc"
121
121
  }
122
122
  },
123
- "packageManager": "pnpm@10.15.0"
123
+ "packageManager": "pnpm@10.15.1"
124
124
  }