@changesets/logger
Advanced tools
Comparing version 0.0.5 to 0.1.0
# @changesets/logger | ||
## 0.1.0 | ||
### Minor Changes | ||
- [#1185](https://github.com/changesets/changesets/pull/1185) [`a971652`](https://github.com/changesets/changesets/commit/a971652ec1403aab3fb89eb2f1640bd5012b895a) Thanks [@Andarist](https://github.com/Andarist)! - `package.json#exports` have been added to limit what (and how) code might be imported from the package. | ||
## 0.0.5 | ||
@@ -7,3 +13,3 @@ | ||
- [`1706fb7`](https://github.com/atlassian/changesets/commit/1706fb751ecc2f5a792c42f467b2063078d58716) [#321](https://github.com/atlassian/changesets/pull/321) Thanks [@mitchellhamilton](https://github.com/mitchellhamilton)! - Fix TypeScript declarations | ||
- [`1706fb7`](https://github.com/changesets/changesets/commit/1706fb751ecc2f5a792c42f467b2063078d58716) [#321](https://github.com/changesets/changesets/pull/321) Thanks [@mitchellhamilton](https://github.com/mitchellhamilton)! - Fix TypeScript declarations | ||
@@ -14,3 +20,3 @@ ## 0.0.4 | ||
- [`04ddfd7`](https://github.com/atlassian/changesets/commit/04ddfd7c3acbfb84ef9c92873fe7f9dea1f5145c) [#305](https://github.com/atlassian/changesets/pull/305) Thanks [@Noviny](https://github.com/Noviny)! - Add link to changelog in readme | ||
- [`04ddfd7`](https://github.com/changesets/changesets/commit/04ddfd7c3acbfb84ef9c92873fe7f9dea1f5145c) [#305](https://github.com/changesets/changesets/pull/305) Thanks [@Noviny](https://github.com/Noviny)! - Add link to changelog in readme | ||
@@ -21,3 +27,3 @@ ## 0.0.3 | ||
- [`9cd1eaf`](https://github.com/atlassian/changesets/commit/9cd1eafc1620894a39fe10d3e393ad8f812df53a) [#214](https://github.com/atlassian/changesets/pull/214) Thanks [@Noviny](https://github.com/Noviny)! - Remove unused dependencies | ||
- [`9cd1eaf`](https://github.com/changesets/changesets/commit/9cd1eafc1620894a39fe10d3e393ad8f812df53a) [#214](https://github.com/changesets/changesets/pull/214) Thanks [@Noviny](https://github.com/Noviny)! - Remove unused dependencies | ||
@@ -28,3 +34,3 @@ ## 0.0.2 | ||
- Updated dependencies [[`8f0a1ef`](https://github.com/atlassian/changesets/commit/8f0a1ef327563512f471677ef0ca99d30da009c0)]: | ||
- Updated dependencies [[`8f0a1ef`](https://github.com/changesets/changesets/commit/8f0a1ef327563512f471677ef0ca99d30da009c0)]: | ||
- @changesets/types@0.4.0 | ||
@@ -36,5 +42,5 @@ | ||
- [`51a0d76`](https://github.com/atlassian/changesets/commit/51a0d766c7064b4c6a9d1490593522c6fcd02929) [#182](https://github.com/atlassian/changesets/pull/182) Thanks [@ajaymathur](https://github.com/ajaymathur)! - - Initial release of the package. | ||
- [`51a0d76`](https://github.com/changesets/changesets/commit/51a0d766c7064b4c6a9d1490593522c6fcd02929) [#182](https://github.com/changesets/changesets/pull/182) Thanks [@ajaymathur](https://github.com/ajaymathur)! - - Initial release of the package. | ||
- Updated dependencies [[`a679b1d`](https://github.com/atlassian/changesets/commit/a679b1dcdcb56652d31536e2d6326ba02a9dfe62)]: | ||
- Updated dependencies [[`a679b1d`](https://github.com/changesets/changesets/commit/a679b1dcdcb56652d31536e2d6326ba02a9dfe62)]: | ||
- @changesets/types@0.3.1 |
@@ -0,0 +0,0 @@ export declare let prefix: string; |
{ | ||
"name": "@changesets/logger", | ||
"version": "0.0.5", | ||
"version": "0.1.0", | ||
"description": "Console log alias", | ||
"main": "dist/logger.cjs.js", | ||
"module": "dist/logger.esm.js", | ||
"main": "dist/changesets-logger.cjs.js", | ||
"module": "dist/changesets-logger.esm.js", | ||
"exports": { | ||
".": { | ||
"types": { | ||
"import": "./dist/changesets-logger.cjs.mjs", | ||
"default": "./dist/changesets-logger.cjs.js" | ||
}, | ||
"module": "./dist/changesets-logger.esm.js", | ||
"import": "./dist/changesets-logger.cjs.mjs", | ||
"default": "./dist/changesets-logger.cjs.js" | ||
}, | ||
"./package.json": "./package.json" | ||
}, | ||
"license": "MIT", | ||
"repository": "https://github.com/changesets/changesets/tree/master/packages/logger", | ||
"repository": "https://github.com/changesets/changesets/tree/main/packages/logger", | ||
"dependencies": { | ||
@@ -10,0 +22,0 @@ "chalk": "^2.1.0" |
@@ -17,7 +17,7 @@ ## @changesets/logger | ||
**info**: Use `info` to print informational messages to user. | ||
**info**: Use `info` to print informational messages to user. | ||
**log**: Use `log` to print messages don't fall in anyother specific category. For example, message to show title of the step being performed by the changesets tool. | ||
**log**: Use `log` to print messages don't fall in any other specific category. For example, message to show title of the step being performed by the changesets tool. | ||
**success**: Use `success` to assert to users that their instructions have completed succesfully. | ||
**success**: Use `success` to assert to users that their instructions have completed successfully. | ||
@@ -32,3 +32,3 @@ **warn**: Use `warn` to print warning messages, something that user could action on now or later without much impact of their work. | ||
``` | ||
```js | ||
import { temporarilySilenceLogs } from "@changesets/test-utils"; | ||
@@ -43,3 +43,3 @@ import { log } from "@changesets/logger"; | ||
// Use console.log to log messages in tests if required | ||
console.log("Yiey, I am logged"); | ||
console.log("Yay, I am logged"); | ||
``` |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No repository
Supply chain riskPackage does not have a linked source code repository. Without this field, a package will have no reference to the location of the source code use to generate the package.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 1 instance in 1 package
No repository
Supply chain riskPackage does not have a linked source code repository. Without this field, a package will have no reference to the location of the source code use to generate the package.
Found 1 instance in 1 package
9812
13
1
184