@adbayb/stack 2.6.1 → 2.6.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.
Files changed (2) hide show
  1. package/dist/index.js +9 -3
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -149,13 +149,19 @@ const logCheckableFiles = (files)=>{
149
149
  if (files.length === 0) {
150
150
  helpers.message("The whole project will be checked.", {
151
151
  label: false,
152
- lineBreak: true
152
+ lineBreak: {
153
+ end: true,
154
+ start: false
155
+ }
153
156
  });
154
157
  return;
155
158
  }
156
159
  helpers.message(files.join("\n "), {
157
160
  label: "Following files will be checked:",
158
- lineBreak: true
161
+ lineBreak: {
162
+ end: true,
163
+ start: false
164
+ }
159
165
  });
160
166
  };
161
167
  const changeset = async (command)=>{
@@ -180,7 +186,7 @@ const ESLINT_EXTENSIONS = [
180
186
  "mdx"
181
187
  ];
182
188
 
183
- var version = "2.6.1";
189
+ var version = "2.6.2";
184
190
 
185
191
  const createWatchCommand = (program)=>{
186
192
  program.command({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adbayb/stack",
3
- "version": "2.6.1",
3
+ "version": "2.6.2",
4
4
  "description": "My opinionated JavaScript-based toolchain",
5
5
  "publishConfig": {
6
6
  "access": "public"