@adbayb/stack 2.35.0-next-700302e → 2.35.0-next-aea8352

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/index.js CHANGED
@@ -192,18 +192,6 @@ const createBuildCommand = (program)=>{
192
192
  });
193
193
  };
194
194
 
195
- const checkChangelog = async ()=>{
196
- try {
197
- return await helpers.exec("changeset status --since=origin/main");
198
- } catch {
199
- throw createError("changeset", [
200
- "Some packages have been changed but no changelogs were found.",
201
- "Run `pnpm stack release --log` to log your change(s).",
202
- "If the change doesn't require a changelog, you can run `pnpm stack release --empty-log`."
203
- ].join("\n"));
204
- }
205
- };
206
-
207
195
  const checkCode = eslint({
208
196
  isFixMode: false
209
197
  });
@@ -365,12 +353,6 @@ const createCheckCommand = (program)=>{
365
353
  skip ({ filter }) {
366
354
  return filter === "commit"; // No need to build if only commit is checked
367
355
  }
368
- }).task({
369
- async handler () {
370
- await checkChangelog();
371
- },
372
- label: label$4("Check changelog compliance"),
373
- skip: ifFilterDefinedAndNotEqualTo("changelog")
374
356
  }).task({
375
357
  async handler () {
376
358
  await checkDependency();
@@ -467,7 +449,7 @@ const PRESERVE_FILES = [
467
449
  "node_modules"
468
450
  ];
469
451
 
470
- var version = "2.35.0-next-700302e";
452
+ var version = "2.35.0-next-aea8352";
471
453
 
472
454
  const createCreateCommand = (program)=>{
473
455
  program.command({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adbayb/stack",
3
- "version": "2.35.0-next-700302e",
3
+ "version": "2.35.0-next-aea8352",
4
4
  "description": "My opinionated JavaScript-based toolchain",
5
5
  "keywords": [
6
6
  "stack",
@@ -1,8 +1,3 @@
1
1
  {
2
- "recommendations": [
3
- "dbaeumer.vscode-eslint",
4
- "unifiedjs.vscode-mdx",
5
- "yoavbls.pretty-ts-errors",
6
- "znck.grammarly"
7
- ]
2
+ "recommendations": ["dbaeumer.vscode-eslint"]
8
3
  }
@@ -1,8 +1,3 @@
1
1
  {
2
- "recommendations": [
3
- "dbaeumer.vscode-eslint",
4
- "unifiedjs.vscode-mdx",
5
- "yoavbls.pretty-ts-errors",
6
- "znck.grammarly"
7
- ]
2
+ "recommendations": ["dbaeumer.vscode-eslint"]
8
3
  }