File tree 4 files changed +4
-4
lines changed
4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env node
2
2
3
- require ( 'version-guard' ) ( '../cli.js' , 12 , 22 )
3
+ require ( 'version-guard' ) ( '../lib/ cli.js' , 12 , 22 )
Original file line number Diff line number Diff line change 1
1
/*! standard. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
2
2
import { StandardEngine } from 'standard-engine'
3
- import options from './options.js'
3
+ import options from './lib/ options.js'
4
4
5
5
export default new StandardEngine ( options )
File renamed without changes.
Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ import { fileURLToPath } from 'node:url'
3
3
import eslint from 'eslint'
4
4
5
5
// eslintConfig.overrideConfigFile have problem reading URLs and file:///
6
- const overrideConfigFile = fileURLToPath ( new URL ( './eslintrc.json' , import . meta. url ) )
7
- const pkgURL = new URL ( './package.json' , import . meta. url )
6
+ const overrideConfigFile = fileURLToPath ( new URL ( '.. /eslintrc.json' , import . meta. url ) )
7
+ const pkgURL = new URL ( '.. /package.json' , import . meta. url )
8
8
const pkgJSON = readFileSync ( pkgURL , { encoding : 'utf-8' } )
9
9
const pkg = JSON . parse ( pkgJSON )
10
10
You can’t perform that action at this time.
0 commit comments