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
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ else
FixPath = $1
endif

serve: up
serve: up $(SOURCE_DIR)/node_modules
@docker-compose exec $(CONTAINER) sh -c "npm run dev"

up:
Expand Down
2 changes: 1 addition & 1 deletion site/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ out
dist

# Astro build / generate output
.astro/
.astro

# Gatsby files
.cache/
Expand Down
4 changes: 2 additions & 2 deletions site/integration/tarball.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { fileURLToPath } from 'url';
import { dirname, resolve } from 'path';
import fg from 'fast-glob';
import fs from 'fs';
import tar from 'tar';
import { create } from 'tar';


export default async (logger) => {
Expand All @@ -20,7 +20,7 @@ export default async (logger) => {
const output = resolve(__dirname, '../public/data/useable.tgz')
const csvFiles = await fg.glob(['*.csv'], { cwd: dataDir })

await tar.c(
await create(
{
file: output,
gzip: true,
Expand Down
142 changes: 61 additions & 81 deletions site/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion site/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
"fast-glob": "^3.3.3",
"lodash-es": "^4.17.21",
"sass": "^1.67.0",
"tar": "^6.2.1"
"tar": "^7.4.3"
}
}