-
Notifications
You must be signed in to change notification settings - Fork 310
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Delete lockfile instead of global ignore (#1434)
* Will allow audit'ing again Auto-merge
- Loading branch information
Showing
4 changed files
with
17 additions
and
2 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
'use strict'; | ||
|
||
// Define some pseudo module globals | ||
var isPro = require('../libs/debug').isPro; | ||
var isDev = require('../libs/debug').isDev; | ||
var isDbg = require('../libs/debug').isDbg; | ||
|
||
// | ||
// NOTE: Only use native *node* `require`s in this file | ||
// since dependencies may not be installed yet | ||
// | ||
var fs = require('fs'); | ||
|
||
console.log('Attempting to delete `package-lock.json`'); | ||
fs.unlinkSync('./package-lock.json'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters