@mimik/local 7.0.0 → 7.0.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.
Files changed (2) hide show
  1. package/index.js +1 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -629,7 +629,7 @@ const rootPath = (pathName, ignore) => {
629
629
  };
630
630
 
631
631
  export const dotFiles = () => {
632
- write(rootPath('eslint.config.js'), parse(read(join(localDirname, 'dotFiles', 'eslint.config.js'), INSTALL)), 'eslint.config.js', INSTALL, true);
632
+ write(rootPath('eslint.config.js'), read(join(localDirname, 'dotFiles', 'eslint.config.js'), INSTALL), INSTALL);
633
633
  write(rootPath('.nycrc'), parse(read(join(localDirname, 'dotFiles', 'nycrc.json'), 'nycrc.json', INSTALL)), INSTALL, true);
634
634
  write(rootPath('.gitignore'), read(join(localDirname, 'dotFiles', 'gitIgnore.txt'), INSTALL), INSTALL);
635
635
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mimik/local",
3
- "version": "7.0.0",
3
+ "version": "7.0.1",
4
4
  "description": "Local setup configuration for normal and test opreration",
5
5
  "main": "./index.js",
6
6
  "type": "module",