@adbayb/stack 0.0.0-next-171af47 → 0.0.0-next-3f75848

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 +2 -2
  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-171af47";
189
+ var version = "0.0.0-next-3f75848";
190
190
 
191
191
  const createWatchCommand = (program)=>{
192
192
  program.command({
@@ -300,7 +300,7 @@ const fixFormatting = async (files)=>{
300
300
  } else {
301
301
  prettierFiles = files.filter((file)=>{
302
302
  return !PRETTIER_IGNORE_FILES.some((filename)=>file.endsWith(filename)) && // Do not format file acting as a symbolik link to prevent formatting errors.
303
- !statSync(file).isSymbolicLink();
303
+ !statSync(resolveFromProjectDirectory(file)).isSymbolicLink();
304
304
  });
305
305
  if (prettierFiles.length === 0) return;
306
306
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adbayb/stack",
3
- "version": "0.0.0-next-171af47",
3
+ "version": "0.0.0-next-3f75848",
4
4
  "description": "My opinionated JavaScript-based toolchain",
5
5
  "publishConfig": {
6
6
  "access": "public"