@adbayb/stack 0.0.0-next-695c49a → 0.0.0-next-f1ca685

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.
Files changed (2) hide show
  1. package/dist/index.js +7 -5
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -186,7 +186,7 @@ const ESLINT_EXTENSIONS = [
186
186
  "mdx"
187
187
  ];
188
188
 
189
- var version = "0.0.0-next-695c49a";
189
+ var version = "0.0.0-next-f1ca685";
190
190
 
191
191
  const createWatchCommand = (program)=>{
192
192
  program.command({
@@ -546,6 +546,10 @@ const createCleanCommand = (program)=>{
546
546
  handler ({ files }) {
547
547
  helpers.message(files.join("\n "), {
548
548
  label: "Removed assets",
549
+ lineBreak: {
550
+ end: false,
551
+ start: true
552
+ },
549
553
  type: "information"
550
554
  });
551
555
  },
@@ -716,9 +720,7 @@ const createCheckCommand = (program)=>{
716
720
  handler (_, argv) {
717
721
  logCheckableFiles(argv.operands);
718
722
  },
719
- skip ({ only }) {
720
- return only === "commit";
721
- }
723
+ skip: ifOnlyDefinedAndNotEqualTo("linter")
722
724
  }).task({
723
725
  label: label("Prepare the project"),
724
726
  async handler () {
@@ -728,7 +730,7 @@ const createCheckCommand = (program)=>{
728
730
  });
729
731
  },
730
732
  skip ({ only }) {
731
- return only === "commit"; // No need to build if only commitlint is run
733
+ return only === "commit"; // No need to build if only commit is checked
732
734
  }
733
735
  }).task({
734
736
  label: label("Check package guidelines"),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adbayb/stack",
3
- "version": "0.0.0-next-695c49a",
3
+ "version": "0.0.0-next-f1ca685",
4
4
  "description": "My opinionated JavaScript-based toolchain",
5
5
  "publishConfig": {
6
6
  "access": "public"