Skip to content
Open
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
8 changes: 3 additions & 5 deletions .github/workflows/node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,22 +13,20 @@ jobs:

strategy:
matrix:
node-version: [20.x, 22.x, 23.x]
node-version: [20.x, 22.x, 23.x, 24.x]

steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
with:
fetch-depth: 0
submodules: true
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4
with:
node-version: ${{ matrix.node-version }}
- name: Setup pnpm
uses: pnpm/[email protected]
- name: Install and test
run: |
pnpm install
make test
npm install-ci-test
env:
CODECOV_UPLOAD_BUNDLE_TOKEN: ${{ secrets.CODECOV_UPLOAD_BUNDLE_TOKEN }}
- name: Codecov install cli
Expand Down
6 changes: 0 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,11 @@ junit.xml
node_modules/
.DS_Store

dist
# Sentry Auth Token
.sentryclirc
*.map
out/*
mcos.junit.xml
package-lock.json



.nx/cache
.nx/workspace-data
vite.config.*.timestamp*
vitest.config.*.timestamp*
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "packages/pklib-ts"]
path = packages/pklib-ts
url = [email protected]:drazisil/pklib-ts.git
2 changes: 1 addition & 1 deletion .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -1 +1 @@
pnpm dlx commitlint --edit $1
npx commitlint --edit $1
1 change: 0 additions & 1 deletion .npmrc
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
node-options="--openssl-legacy-provider"
link-workspace-packages=true
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v23.5.0
v24.3.0
4 changes: 1 addition & 3 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# Add files here to ignore them from prettier formatting
/dist
/coverage
/.nx/cache
/.nx/workspace-data
/coverage
1 change: 0 additions & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
"ms-azuretools.vscode-docker",
"ms-vscode.makefile-tools",
"usernamehw.errorlens",
"biomejs.biome",
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode"
]
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ certs: ## Generate new certs

.PHONY: test
test: ## Run tests
@pnpx vitest --run
@npx vitest --run --coverage

.PHONY: build
build: ## Build the project
@pnpm run build

.PHONY: start
start: ## Start the project
@pnpx tsx --import ./instrument.mjs --openssl-legacy-provider --env-file=.env src/server.ts
@pnpx tsx --import ./instrument.mjs --openssl-legacy-provider --env-file=.env src/nps_server.ts

.PHONY: prod_node
prod_node: ## Start the project in production mode
Expand Down
1 change: 0 additions & 1 deletion docs/server.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ You will need to open the following ports:
- 43300
- 43400
- 53303
- 9000 - 9014 (not yet used, I think they are for UDP client racing

### Running

Expand Down
7 changes: 0 additions & 7 deletions libs/@rustymotors/binary/README.md

This file was deleted.

4 changes: 2 additions & 2 deletions libs/@rustymotors/binary/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"private": true,
"dependencies": {
"@mikro-orm/core": "^6.4.16",
"rusty-motors-shared": "workspace:1.0.0-next.0",
"rusty-motors-shared-packets": "workspace:1.0.0-next.0",
"rusty-motors-shared": "",
"rusty-motors-shared-packets": "",
"tslib": "^2.8.1"
},
"type": "module",
Expand Down
20 changes: 0 additions & 20 deletions libs/@rustymotors/binary/project.json

This file was deleted.

44 changes: 0 additions & 44 deletions nx.json

This file was deleted.

Loading
Loading