Skip to content
This repository was archived by the owner on Jul 12, 2024. It is now read-only.
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
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16, 18, 20]
node-version: [18, 20]

steps:
- uses: actions/checkout@v2
Expand Down
28 changes: 20 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,19 +1,32 @@
# Yarn
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions

*/**/yarn.lock
yarn-error.log
npm-debug.log
report*.json

# Node modules
node_modules/

# Dists
dist/*
dist-esm/*
dist-es6/*
**/dist/*

node_modules/
# Generatred
coverage/
.nyc_output/

.docusaurus

npm-debug.log
*/**/yarn.lock
yarn-error.log
report*.json

# typescript
tsconfig.tsbuildinfo

# editor files
Expand All @@ -23,4 +36,3 @@ tsconfig.tsbuildinfo
*.zip
*.rar

.reify-cache
1 change: 1 addition & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
nodeLinker: node-modules
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "math.gl",
"name": "math.gl-monorepo",
"description": "Array-based 3D Math Classes optimized for WebGL applications",
"license": "MIT",
"private": true,
Expand All @@ -24,7 +24,6 @@
"test-size-explicit": "npm run build && webpack --config test/webpack.config.js --env.import-vec4-mat4-explicit",
"test-size": "npm run build && webpack --config test/webpack.config.js --env.import-nothing"
},
"dependencies": {},
"devDependencies": {
"@probe.gl/bench": "^4.0.0",
"@turf/destination": "^6.0.1",
Expand All @@ -41,8 +40,9 @@
"tape": "4.11.0",
"es-abstract": "^1.21.1"
},
"packageManager": "yarn@4.0.0",
"volta": {
"node": "18.18.1",
"yarn": "1.22.19"
"yarn": "4.0.0"
}
}
Loading