Skip to content

Commit

Permalink
remove engines in package json
Browse files Browse the repository at this point in the history
  • Loading branch information
bmatthieu3 committed Aug 12, 2023
1 parent 08699a9 commit 7d56962
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,6 @@ jobs:
run: |
npm run build
- name: "Run some tests"
run: npm test
run: |
npm run test:build
npm run test:unit
9 changes: 3 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@
"dev": "npm run build && vite",
"serve": "npm run dev",
"preview": "vite preview",
"test:webgl2": "cd src/core && cargo test --release --features webgl2",
"test:unit": "vitest"
"test:build": "cd src/core && cargo test --release --features webgl2",
"test:unit": "vitest run"
},
"devDependencies": {
"happy-dom": "^8.9.0",
"npm": "^8.19.2",
"npm": "^9.8.1",
"typescript": "^5.0.4",
"vite": "^4.3.8",
"vite-plugin-css-injected-by-js": "^3.1.1",
Expand All @@ -57,8 +57,5 @@
"dependencies": {
"autocompleter": "^6.1.3",
"jquery": "^3.6.1"
},
"engines": {
"node": "16.x"
}
}
2 changes: 1 addition & 1 deletion src/js/MocServer.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
// along with Aladin Lite.
//

import { Utils } from "./Utils.js";
import { Utils } from "./Utils";


/******************************************************************************
Expand Down

0 comments on commit 7d56962

Please sign in to comment.