Skip to content

Commit

Permalink
feat: Added keywords for the package (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
ch1ller0 committed Jan 1, 2023
1 parent af880fd commit 6fdd17a
Show file tree
Hide file tree
Showing 8 changed files with 40 additions and 9 deletions.
6 changes: 6 additions & 0 deletions .changeset/angry-starfishes-jog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@fridgefm/inverter-test": patch
"@fridgefm/inverter": patch
---

feat: Added keywords for the package
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,6 @@ coverage
*.log
*.tsbuildinfo
.env
.turbo
.turbo

.DS_Store
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ A powerful and tiny IoC library with Typescript-first support. Lets you create _

This is a monorepo that consists of several packages:

- [@fridgefm/inverter](./packages/inverter/README.md) - The core part of the inverter.
- [@fridgefm/inverter-test](./packages/inverter-test/README.md) - Testing utilities for inverter.
- [@fridgefm/inverter](./packages/inverter/) - The core part of the inverter.
- [@fridgefm/inverter-test](./packages/inverter-test/) - Testing utilities for inverter.

## Examples
You can find the examples [here](./apps/examples/)
You can find the example usage of these libraries [here](./apps/examples/)
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@
"ts-jest": "^29.0.3",
"tsd": "^0.19.1",
"turbo": "^1.6.3",
"typescript": "^4.5.5"
"typescript": "^4.9.0"
}
}
9 changes: 8 additions & 1 deletion packages/inverter-test/README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,9 @@
# @fridgefm/inverter-test
A package that allows to test your code which uses the `@fridgefm/inverter`

A package that allows to easily test apps/libraries built on [`@fridgefm/inverter`]((https://www.npmjs.com/package/@fridgefm/inverter)).

[![npm package](https://img.shields.io/npm/v/@fridgefm/inverter-test?style=flat-square)](https://www.npmjs.com/package/@fridgefm/inverter-test)
[![minzipped size](https://img.shields.io/bundlephobia/minzip/@fridgefm/inverter-test?style=flat-square)](https://bundlephobia.com/package/@fridgefm/inverter-test)
[![downloads](https://img.shields.io/npm/dt/@fridgefm/inverter-test?style=flat-square)](https://www.npmjs.com/package/@fridgefm/inverter-test)
[![open issues](https://img.shields.io/github/issues-raw/ch1ller0/fridgefm-inverter?style=flat-square)](https://github.com/ch1ller0/fridgefm-inverter/issues)

10 changes: 9 additions & 1 deletion packages/inverter-test/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,15 @@
"typings": "build/index.d.ts",
"module": "build/index.js",
"license": "MIT",
"keywords": [],
"keywords": [
"ioc",
"di",
"typescript",
"node",
"dependency injection",
"dependency inversion",
"inversion of control"
],
"files": [
"./build/**"
],
Expand Down
10 changes: 9 additions & 1 deletion packages/inverter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,15 @@
"typings": "build/index.d.ts",
"module": "build/index.js",
"license": "MIT",
"keywords": [],
"keywords": [
"ioc",
"di",
"typescript",
"node",
"dependency injection",
"dependency inversion",
"inversion of control"
],
"files": [
"./build/**"
],
Expand Down
2 changes: 1 addition & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4536,7 +4536,7 @@ type-fest@^0.8.1:
resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d"
integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==

typescript@^4.5.5:
typescript@^4.9.0:
version "4.9.4"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.4.tgz#a2a3d2756c079abda241d75f149df9d561091e78"
integrity sha512-Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg==
Expand Down

0 comments on commit 6fdd17a

Please sign in to comment.