Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"presets": ["@babel/preset-env", "@babel/preset-typescript"]
}
8 changes: 4 additions & 4 deletions .eslintrc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ ignorePatterns:
- dist

extends:
- plugin:@foxglove/base
- plugin:@foxglove/jest
- plugin:@lichtblick/base
- plugin:@lichtblick/jest

overrides:
- files: ["*.ts", "*.tsx"]
extends:
- plugin:@foxglove/typescript
- plugin:@lichtblick/typescript
parserOptions:
project: ./tsconfig.json
rules:
"@foxglove/no-boolean-parameters": off
"@lichtblick/no-boolean-parameters": off
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// -*- jsonc -*-
{
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
"source.fixAll.eslint": "explicit"
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
Expand Down
10 changes: 3 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# @foxglove/avl
# @lichtblick/avl

> _Adelson-Velsky-Landis (AVL) self-balancing binary trees in TypeScript_

Expand All @@ -9,7 +9,7 @@
## Usage

```Typescript
import { AVLTree } from "@foxglove/avl";
import { AVLTree } from "@lichtblick/avl";

const tree = new AVLTree<number, string>();
tree.set(0, "zero");
Expand Down Expand Up @@ -42,14 +42,10 @@ bigintTree.set(1n, "one");

## License

@foxglove/avl is licensed under the [MIT License](https://opensource.org/licenses/MIT).
@lichtblick/avl is licensed under the [MIT License](https://opensource.org/licenses/MIT).

## Releasing

1. Run `yarn version --[major|minor|patch]` to bump version
2. Run `git push && git push --tags` to push new tag
3. GitHub Actions will take care of the rest

## Stay in touch

Join our [Slack channel](https://foxglove.dev/slack) to ask questions, share feedback, and stay up to date on what our team is working on.
7 changes: 4 additions & 3 deletions jest.config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"testMatch": ["<rootDir>/src/**/*.test.ts"],
"transform": {
"^.+\\.ts$": "ts-jest"
"^.+\\.ts$": [
"babel-jest"
]
}
}
}
43 changes: 23 additions & 20 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@foxglove/avl",
"name": "@lichtblick/avl",
"version": "1.0.0",
"description": "Adelson-Velsky-Landis (AVL) self-balancing binary trees in TypeScript",
"license": "MIT",
Expand All @@ -13,13 +13,13 @@
],
"repository": {
"type": "git",
"url": "https://github.com/foxglove/avl.git"
"url": "https://github.com/Lichtblick-Suite/avl.git"
},
"author": {
"name": "Foxglove Technologies",
"email": "support@foxglove.dev"
"name": "Lichtblick",
"email": "lichtblick@bmwgroup.com"
},
"homepage": "https://github.com/foxglove/avl",
"homepage": "https://github.com/Lichtblick-Suite/avl",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
Expand All @@ -36,24 +36,27 @@
"test": "jest"
},
"engines": {
"node": ">= 14"
"node": ">= 16"
},
"devDependencies": {
"@foxglove/eslint-plugin": "0.17.0",
"@types/jest": "27.0.1",
"@typescript-eslint/eslint-plugin": "4.31.1",
"@typescript-eslint/parser": "4.31.1",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@lichtblick/eslint-plugin": "1.0.1",
"@types/jest": "29.5.13",
"@typescript-eslint/eslint-plugin": "^6",
"@typescript-eslint/parser": "^6",
"babel-jest": "^29.7.0",
"eslint": "8.50.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-es": "4.1.0",
"eslint-plugin-filenames": "1.3.2",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-jest": "24.4.0",
"eslint-plugin-prettier": "4.0.0",
"jest": "27.2.0",
"prettier": "2.4.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jest": "27.6.3",
"eslint-plugin-prettier": "5.1.3",
"jest": "29.7.0",
"prettier": "3.2.0",
"rimraf": "3.0.2",
"ts-jest": "27.0.5",
"typescript": "4.4.3"
"typescript": "5.3.3"
}
}
}
Loading
Loading