-
Notifications
You must be signed in to change notification settings - Fork 20
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 #3 from
skip-tests-mocks
.
Skip tests mocks
- Loading branch information
Showing
2 changed files
with
10 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,14 @@ | ||
{ | ||
"name": "@grnsft/if-unofficial-models", | ||
"description": "Impact Framework Unofficial Models.", | ||
"version": "v0.0.2", | ||
"version": "v0.0.3", | ||
"author": { | ||
"name": "Green Software Foundation", | ||
"email": "[email protected]" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/Green-Software-Foundation/if-unofficial-models/issues/new?assignees=&labels=feedback&projects=&template=feedback.md&title=Feedback+-+" | ||
}, | ||
"dependencies": { | ||
"@azure/arm-compute": "^21.2.0", | ||
"@azure/arm-monitor": "^7.0.0", | ||
|
@@ -58,15 +61,12 @@ | |
"repository": { | ||
"url": "https://github.com/Green-Software-Foundation/if-unofficial-models.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/Green-Software-Foundation/if-unofficial-models/issues/new?assignees=&labels=feedback&projects=&template=feedback.md&title=Feedback+-+" | ||
}, | ||
"scripts": { | ||
"build": "tsc", | ||
"build": "rm -rf build && tsc --project tsconfig.build.json", | ||
"fix": "gts fix", | ||
"fix:package": "fixpack", | ||
"lint": "gts lint", | ||
"prepare": "npm run build", | ||
"prepublish": "yarn build", | ||
"test": "jest --verbose" | ||
} | ||
} |
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,4 +1,7 @@ | ||
{ | ||
"extends": "./tsconfig.json", | ||
"exclude": [ "src/**/*.test.ts"] | ||
"exclude": [ | ||
"src/__tests__", | ||
"src/__mocks__" | ||
] | ||
} |