@savvy-web/changesets 0.1.1 → 0.1.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.
package/cjs/changelog.cjs CHANGED
@@ -400,6 +400,7 @@ var __webpack_exports__ = {};
400
400
  var services_github = __webpack_require__("./src/services/github.ts");
401
401
  var markdown = __webpack_require__("./src/services/markdown.ts");
402
402
  function logWarning(message, ...args) {
403
+ if ("u" > typeof process && process.env.VITEST) return;
403
404
  if ("u" > typeof process && "true" === process.env.GITHUB_ACTIONS) {
404
405
  const text = args.length > 0 ? `${message} ${args.join(" ")}` : message;
405
406
  console.warn(`::warning::${text}`);
package/cjs/index.cjs CHANGED
@@ -167,6 +167,7 @@ var __webpack_modules__ = {
167
167
  var services_github = __webpack_require__("./src/services/github.ts");
168
168
  var markdown = __webpack_require__("./src/services/markdown.ts");
169
169
  function logWarning(message, ...args) {
170
+ if ("u" > typeof process && process.env.VITEST) return;
170
171
  if ("u" > typeof process && "true" === process.env.GITHUB_ACTIONS) {
171
172
  const text = args.length > 0 ? `${message} ${args.join(" ")}` : message;
172
173
  console.warn(`::warning::${text}`);
package/esm/160.js CHANGED
@@ -122,6 +122,7 @@ const MarkdownLive = Layer.succeed(MarkdownService, {
122
122
  stringify: (tree)=>Effect.sync(()=>stringifyMarkdown(tree))
123
123
  });
124
124
  function logWarning(message, ...args) {
125
+ if ("u" > typeof process && process.env.VITEST) return;
125
126
  if ("u" > typeof process && "true" === process.env.GITHUB_ACTIONS) {
126
127
  const text = args.length > 0 ? `${message} ${args.join(" ")}` : message;
127
128
  console.warn(`::warning::${text}`);
@@ -492,7 +492,7 @@ const rootCommand = Command.make("savvy-changesets").pipe(Command.withSubcommand
492
492
  ]));
493
493
  const cli = Command.run(rootCommand, {
494
494
  name: "savvy-changesets",
495
- version: "0.1.1"
495
+ version: "0.1.2"
496
496
  });
497
497
  function runCli() {
498
498
  const main = Effect.suspend(()=>cli(process.argv)).pipe(Effect.provide(NodeContext.layer));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@savvy-web/changesets",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "private": false,
5
5
  "description": "Custom changelog formatter and markdown processing pipeline for the Silk Suite. Provides structured changeset sections, remark-based validation and transformation, and an Effect CLI.",
6
6
  "keywords": [
@@ -57,7 +57,7 @@
57
57
  "@effect/cli": "^0.73.2",
58
58
  "@effect/platform": "^0.94.5",
59
59
  "@effect/platform-node": "^0.104.1",
60
- "effect": "^3.19.17",
60
+ "effect": "^3.19.18",
61
61
  "mdast-util-heading-range": "^4.0.0",
62
62
  "mdast-util-to-string": "^4.0.0",
63
63
  "remark-gfm": "^4.0.1",
@@ -76,6 +76,9 @@
76
76
  "optional": false
77
77
  }
78
78
  },
79
+ "engines": {
80
+ "node": ">=24.0.0"
81
+ },
79
82
  "scripts": {
80
83
  "postinstall": "savvy-changesets init --check"
81
84
  },