@adbayb/stack 2.6.0 → 2.6.1

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.
@@ -76,7 +76,7 @@ export const config = [
76
76
  "unicorn/prefer-dom-node-remove": "error",
77
77
  "unicorn/prefer-dom-node-text-content": "error",
78
78
  "unicorn/prefer-event-target": "error",
79
- "unicorn/prefer-export-from": "error",
79
+ "unicorn/prefer-export-from": ["error", { ignoreUsedVariables: true }],
80
80
  "unicorn/prefer-global-this": "error",
81
81
  "unicorn/prefer-includes": "error",
82
82
  "unicorn/prefer-keyboard-event-key": "error",
package/dist/index.js CHANGED
@@ -149,19 +149,13 @@ 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: {
153
- end: true,
154
- start: false
155
- }
152
+ lineBreak: true
156
153
  });
157
154
  return;
158
155
  }
159
156
  helpers.message(files.join("\n "), {
160
157
  label: "Following files will be checked:",
161
- lineBreak: {
162
- end: true,
163
- start: false
164
- }
158
+ lineBreak: true
165
159
  });
166
160
  };
167
161
  const changeset = async (command)=>{
@@ -186,7 +180,7 @@ const ESLINT_EXTENSIONS = [
186
180
  "mdx"
187
181
  ];
188
182
 
189
- var version = "2.6.0";
183
+ var version = "2.6.1";
190
184
 
191
185
  const createWatchCommand = (program)=>{
192
186
  program.command({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adbayb/stack",
3
- "version": "2.6.0",
3
+ "version": "2.6.1",
4
4
  "description": "My opinionated JavaScript-based toolchain",
5
5
  "publishConfig": {
6
6
  "access": "public"