Skip to content

Commit 6e9dc9d

Browse files
fix: update license references to LICENSE.md across all relevant files
1 parent 49a93db commit 6e9dc9d

File tree

9 files changed

+12
-12
lines changed

9 files changed

+12
-12
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<a aria-label="Top language" href="https://github.com/hyperse-io/logger/search?l=typescript">
1212
<img alt="GitHub top language" src="https://img.shields.io/github/languages/top/hyperse-io/logger?style=flat-square&labelColor=000&color=blue">
1313
</a>
14-
<a aria-label="Licence" href="https://github.com/hyperse-io/logger/blob/main/LICENSE">
14+
<a aria-label="Licence" href="https://github.com/hyperse-io/logger/blob/main/LICENSE.md">
1515
<img alt="Licence" src="https://img.shields.io/github/license/hyperse-io/logger?style=flat-square&labelColor=000000" />
1616
</a>
1717

@@ -332,4 +332,4 @@ Hyperse Logger is designed for high-performance applications:
332332

333333
## License
334334

335-
This project is licensed under the [MIT LICENSE](./LICENSE).
335+
This project is licensed under the [MIT LICENSE](./LICENSE.md).

constraints.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
% reference for other constraints: https://github.com/babel/babel/blob/main/constraints.pro
44

55
% Enforces the license in all public workspaces while removing it from private workspaces
6-
gen_enforced_field(WorkspaceCwd, 'license', 'SEE LICENSE IN FILE \'LICENSE\'') :-
6+
gen_enforced_field(WorkspaceCwd, 'license', 'SEE LICENSE IN FILE \'LICENSE.md\'') :-
77
\+ workspace_field(WorkspaceCwd, 'private', true).
88

99
% Enforces that a dependency doesn't appear in both `dependencies` and `devDependencies`

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"url": "https://github.com/hyperse-io"
2424
},
2525
"type": "module",
26-
"license": "SEE LICENSE IN FILE 'LICENSE'",
26+
"license": "SEE LICENSE IN FILE 'LICENSE.md'",
2727
"workspaces": [
2828
"website",
2929
"packages/*",

packages/logger-plugin-console/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"url": "https://github.com/hyperse-io"
1313
},
1414
"type": "module",
15-
"license": "SEE LICENSE IN FILE 'LICENSE'",
15+
"license": "SEE LICENSE IN FILE 'LICENSE.md'",
1616
"exports": {
1717
".": {
1818
"types": "./dist/index.d.ts",

packages/logger-plugin-sentry/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"url": "https://github.com/hyperse-io"
1313
},
1414
"type": "module",
15-
"license": "SEE LICENSE IN FILE 'LICENSE'",
15+
"license": "SEE LICENSE IN FILE 'LICENSE.md'",
1616
"exports": {
1717
".": {
1818
"types": "./dist/index.d.ts",

packages/logger-plugin-stdout/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"url": "https://github.com/hyperse-io"
1313
},
1414
"type": "module",
15-
"license": "SEE LICENSE IN FILE 'LICENSE'",
15+
"license": "SEE LICENSE IN FILE 'LICENSE.md'",
1616
"exports": {
1717
".": {
1818
"types": "./dist/index.d.ts",

packages/logger/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<a aria-label="Top language" href="https://github.com/hyperse-io/logger/search?l=typescript">
1111
<img alt="GitHub top language" src="https://img.shields.io/github/languages/top/hyperse-io/logger?style=flat-square&labelColor=000&color=blue">
1212
</a>
13-
<a aria-label="License" href="https://github.com/hyperse-io/logger/blob/main/LICENSE">
13+
<a aria-label="License" href="https://github.com/hyperse-io/logger/blob/main/LICENSE.md">
1414
<img alt="License" src="https://img.shields.io/npm/l/%40hyperse%2Flogger?style=flat-square&labelColor=000">
1515
</a>
1616
<a aria-label="Node.js version" href="https://nodejs.org/">
@@ -418,7 +418,7 @@ npm run build
418418

419419
## 📄 License
420420

421-
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
421+
This project is licensed under the MIT License - see the [LICENSE](LICENSE.md) file for details.
422422

423423
## Related Projects
424424

packages/logger/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"url": "https://github.com/hyperse-io"
1313
},
1414
"type": "module",
15-
"license": "SEE LICENSE IN FILE 'LICENSE'",
15+
"license": "SEE LICENSE IN FILE 'LICENSE.md'",
1616
"exports": {
1717
".": {
1818
"types": "./dist/index.d.ts",

website/src/app/docs/console/page.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ logger.info('info message');
4141

4242
## API
4343

44-
### createStdoutPlugin
44+
### createConsolePlugin
4545

4646
<TSDoc
4747
definition={generateDefinition({
@@ -50,7 +50,7 @@ export { createConsolePlugin as default } from '@hyperse/logger-plugin-console'`
5050
})}
5151
/>
5252

53-
### StdoutOptions
53+
### ConsoleOptions
5454

5555
<TSDoc
5656
definition={generateDefinition({

0 commit comments

Comments
 (0)