Skip to content

Commit 022efd4

Browse files
committed
Fix constants exports
1 parent 6f93d3a commit 022efd4

File tree

12 files changed

+12
-11
lines changed

12 files changed

+12
-11
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
declare const BUN_LOCK: 'bun.lock'
2-
export = BUN_LOCK
2+
export = BUN_LOCK

registry/lib/constants/bun-lock.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
'use strict'
22

3-
module.exports = 'bun.lock'
3+
module.exports = 'bun.lock'
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
declare const BUN_LOCKB: 'bun.lockb'
2-
export = BUN_LOCKB
2+
export = BUN_LOCKB
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
'use strict'
22

3-
module.exports = 'bun.lockb'
3+
module.exports = 'bun.lockb'
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
declare const DOT_PACKAGE_LOCK_JSON: '.package-lock.json'
2-
export = DOT_PACKAGE_LOCK_JSON
2+
export = DOT_PACKAGE_LOCK_JSON
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
'use strict'
22

3-
module.exports = '.package-lock.json'
3+
module.exports = '.package-lock.json'

registry/lib/constants/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ import nodeNoWarningsFlags from './node-no-warnings-flags'
5959
import NODE_VERSION from './node-version'
6060
import NPM from './npm'
6161
import npmExecPath from './npm-exec-path'
62-
import NPM_SHRINKWRAP_JSON from './npm-shrinkwrap-json'
6362
import npmRealExecPath from './npm-real-exec-path'
63+
import NPM_SHRINKWRAP_JSON from './npm-shrinkwrap-json'
6464
import NPX from './npx'
6565
import OVERRIDES from './overrides'
6666
import PACKAGE_DEFAULT_NODE_RANGE from './package-default-node-range'
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
declare const NPM_SHRINKWRAP_JSON: 'npm-shrinkwrap.json'
2-
export = NPM_SHRINKWRAP_JSON
2+
export = NPM_SHRINKWRAP_JSON
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
'use strict'
22

3-
module.exports = 'npm-shrinkwrap.json'
3+
module.exports = 'npm-shrinkwrap.json'
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
declare const VLT_LOCK_JSON: 'vlt-lock.json'
2-
export = VLT_LOCK_JSON
2+
export = VLT_LOCK_JSON

0 commit comments

Comments
 (0)