-
Notifications
You must be signed in to change notification settings - Fork 607
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from nickpape-msft/nickpape/fix-lint-errors
Fix all lint errors
- Loading branch information
Showing
11 changed files
with
310 additions
and
243 deletions.
There are no files selected for viewing
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
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
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
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
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
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 |
---|---|---|
@@ -1,14 +1,14 @@ | ||
import { argv as clArgs } from 'yargs'; | ||
import * as path from 'path'; | ||
|
||
export let root = process.cwd(); | ||
export let args = clArgs; | ||
export const root: string = process.cwd(); | ||
export const args: { [flat: string]: boolean | string} = clArgs; | ||
|
||
export interface IPackageJSON { | ||
name: string; | ||
version: string; | ||
} | ||
|
||
export let builtPackage: IPackageJSON = require(path.join(root, 'package.json')); | ||
export let coreBuildPackage: IPackageJSON = require('../package.json'); | ||
export let nodeVersion = process.version; | ||
export const builtPackage: IPackageJSON = require(path.join(root, 'package.json')); | ||
export const coreBuildPackage: IPackageJSON = require('../package.json'); | ||
export const nodeVersion: string = process.version; |
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
Oops, something went wrong.