Skip to content

Commit 2ea4a50

Browse files
authored
Merge pull request #1207 from koopjs/revert-node-upgrade
Revert node upgrade
2 parents 5217ef9 + b9a2c3e commit 2ea4a50

33 files changed

Lines changed: 16788 additions & 29201 deletions

.changeset/witty-ducks-return.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@koopjs/featureserver': major
3+
---
4+
5+
add 'indexes' to layer metadata defaults

.coverage_json/coverage-summary.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

.github/workflows/ci-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ${{ matrix.os }}
1111
strategy:
1212
matrix:
13-
node-version: [24.x]
13+
node-version: [18.x]
1414
os: [ubuntu-latest, windows-latest]
1515
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
1616

.github/workflows/pr-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ${{ matrix.os }}
2020
strategy:
2121
matrix:
22-
node-version: [24.x]
22+
node-version: [18.x]
2323
os: [ubuntu-latest, windows-latest]
2424
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
2525

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
node-version: [24.x]
15+
node-version: [18.x]
1616

1717
steps:
1818
- name: Checkout
@@ -72,4 +72,4 @@ jobs:
7272

7373
- name: Remove .npmrc artifact
7474
if: always()
75-
run: rm .npmrc
75+
run: rm .npmrc

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Use the official Node.js image as the base image
2-
FROM node:24.14.1-alpine
2+
FROM node:16.20.2
33

44
# Set the working directory in the Docker container
55
WORKDIR /usr/src/app
@@ -17,4 +17,4 @@ COPY demo ./demo
1717
EXPOSE 8080
1818

1919
# Start the Koop server
20-
CMD ["node", "demo/index.js"]
20+
CMD ["node", "demo/index.js"]

babel.config.js

Lines changed: 0 additions & 3 deletions
This file was deleted.

jest.config.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,6 @@ const config = {
3535

3636
// The glob patterns Jest uses to detect test files
3737
testMatch: ['<rootDir>/test/**/*.spec.[jt]s?(x)'],
38-
39-
// An array of regexp pattern strings that are matched against all source file paths
40-
// Matched files will not be transformed
41-
transformIgnorePatterns: ['node_modules/(?!(@sindresorhus/fnv1a)/)'],
4238
};
4339

4440
module.exports = config;

0 commit comments

Comments
 (0)