Comparing version 1.2.1 to 1.2.2
@@ -5,2 +5,14 @@ { | ||
{ | ||
"version": "1.2.2", | ||
"tag": "get-roots_v1.2.2", | ||
"date": "Wed, 04 Sep 2019 12:09:34 GMT", | ||
"comments": { | ||
"patch": [ | ||
{ | ||
"comment": "nonce" | ||
} | ||
] | ||
} | ||
}, | ||
{ | ||
"version": "1.2.1", | ||
@@ -7,0 +19,0 @@ "tag": "get-roots_v1.2.1", |
# Change Log - get-roots | ||
This log was last generated on Tue, 03 Sep 2019 12:08:52 GMT and should not be manually modified. | ||
This log was last generated on Wed, 04 Sep 2019 12:09:34 GMT and should not be manually modified. | ||
## 1.2.2 | ||
Wed, 04 Sep 2019 12:09:34 GMT | ||
### Patches | ||
- nonce | ||
## 1.2.1 | ||
@@ -6,0 +13,0 @@ Tue, 03 Sep 2019 12:08:52 GMT |
@@ -20,5 +20,5 @@ "use strict"; | ||
exports.getRootByFilename = getRootByFilename; | ||
exports.getGitRoot = (location) => getRootByFilename(location, ['.git']); | ||
exports.getPackageRoot = (location) => getRootByFilename(location, ['package.json']); | ||
exports.getGitRoot = (location) => getRootByFilename(location, ['.git']); | ||
exports.getMonorepoRoot = (location) => getRootByFilename(location, ['rush.json', 'lerna.json']); | ||
//# sourceMappingURL=index.js.map |
@@ -19,4 +19,4 @@ import {dirname, resolve} from "path"; | ||
export const getGitRoot = (location: string) => getRootByFilename(location, ['.git']); | ||
export const getPackageRoot = (location: string) => getRootByFilename(location, ['package.json']); | ||
export const getGitRoot = (location: string) => getRootByFilename(location, ['.git']); | ||
export const getMonorepoRoot = (location: string) => getRootByFilename(location, ['rush.json', 'lerna.json']); |
{ | ||
"name": "get-roots", | ||
"version": "1.2.1", | ||
"version": "1.2.2", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
5302
121