Skip to content

Commit fd11f75

Browse files
committed
General file updates
1 parent 8a4303d commit fd11f75

27 files changed

+406
-4581
lines changed

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ body:
2626
options:
2727
- "@float-toolkit/core"
2828
- "@float-toolkit/react"
29+
- "@float-toolkit/angular"
2930

3031
- type: input
3132
id: package-version

.github/ISSUE_TEMPLATE/feature-request.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ body:
2626
options:
2727
- "@float-toolkit/core"
2828
- "@float-toolkit/react"
29+
- "@float-toolkit/angular"
2930

3031
- type: textarea
3132
id: description

.github/labels.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -86,10 +86,6 @@
8686
description: This PR is ready to be merged
8787
color: "0ff40b"
8888

89-
- name: 🛡️ Security
90-
description: Security or privacy concern
91-
color: "b60205"
92-
9389
- name: 🧪 Tests
9490
description: Improvements or additions to unit tests
9591
color: "9f2d60"

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ node_modules.bun
2323
*.launch
2424
.settings/
2525
*.sublime-workspace
26+
.DS_Store
2627
**/tsconfig*.tsbuildinfo
2728
**/jsconfig*.tsbuildinfo
2829

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
[![NPM latest version](https://img.shields.io/npm/v/@float-toolkit/core?label=version&logo=npm)](https://npmjs.com/package/@float-toolkit/core)
1010
[![NPM downloads](https://img.shields.io/npm/dt/@float-toolkit/core?logo=npm)](https://npmjs.com/package/@float-toolkit/core)
11-
[![Tests status](https://img.shields.io/github/workflow/status/float-toolkit/core/Test%20with%20Jest?label=tests&logo=jest)](https://github.com/float-toolkit/core/actions/workflows/testWithJest.yml)
11+
[![Tests status](https://img.shields.io/github/actions/workflow/status/float-toolkit/core/testWithJest.yml?branch=master&label=tests&logo=jest)](https://github.com/float-toolkit/core/actions/workflows/testWithJest.yml)
1212
[![Code coverage with Codecov](https://img.shields.io/codecov/c/github/float-toolkit/core/tests?logo=codecov&logoColor=white)](https://codecov.io/gh/float-toolkit/core)
1313
[![Contributor Covenant Code of Conduct](https://img.shields.io/badge/Contributor%20Covenant-2.1-5e0d73)](https://github.com/float-toolkit/core/blob/master/.github/CODE_OF_CONDUCT.md)
1414

@@ -59,7 +59,7 @@ console.log(ft.add([0.1, 0.2])); // 0.3
5959
</div>
6060

6161
Float Toolkit is written in [TypeScript](https://typescriptlang.org). As such, you will have full type checking in your TypeScript
62-
projects. The `FloatToolkit` class also serves as a namespace containing the type definitions used by the package.
62+
projects. The type definitions used by the package are exported on their own or through the `FloatToolkit` namespace.
6363

6464
```ts
6565
import FloatToolkit from "@float-toolkit/core";
@@ -118,6 +118,7 @@ Need help using Float Toolkit? Don't hesitate to reach out on
118118
## Child packages
119119

120120
- [Float Toolkit for React](https://npmjs.com/package/@float-toolkit/react)
121+
- [Float Toolkit for Angular](https://npmjs.com/package/@float-toolkit/angular)
121122

122123
## Contributing
123124

jsconfig.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,12 @@
33

44
"compilerOptions": {
55
"target": "esnext",
6+
67
"module": "esnext",
8+
"types": ["node"],
9+
10+
"allowJs": true,
11+
"checkJs": true,
712

813
"outDir": "./dist/",
914
"noEmit": false

0 commit comments

Comments
 (0)