Skip to content

Commit

Permalink
Merge pull request #100 from vimc/fix-build
Browse files Browse the repository at this point in the history
Fix build
  • Loading branch information
richfitz authored Dec 2, 2024
2 parents d77bd03 + 422fcca commit 556f313
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ This method is ideal for UI development where the data does not matter at all.
- `interim` - the private (Funders') tool for interim updates

1. `npm run build-dev` or `npm run build-dev-watch`
1. `cd out && python -m SimpleHTTPServer` to serve the compiled files.
1. `cd out && python3 -m http.server` to serve the compiled files.
1. Visit localhost:8000 in your browser to view the app.

Note that the fake data only contains points for the most recent 3 touchstones.
Expand All @@ -45,7 +45,7 @@ report on the reporting portal
Copy the files to `data/test`.
1. `npm install`
1. `npm run build-dev` or `npm run build-dev-watch`
1. `cd out && python -m SimpleHTTPServer` to serve the compiled files.
1. `cd out && python3 -m http.server` to serve the compiled files.
1. Visit localhost:8000 in your browser to view the app.

## Testing
Expand Down
2 changes: 0 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,13 @@
},
"author": "",
"license": "ISC",
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.2.6",
"@types/chart.js": "^2.9.9",
"@types/color": "^3.0.0",
"@types/file-saver": "^2.0.1",
"@types/jquery": "^3.3.31",
"@types/json2csv": "^4.5.0",
"@types/leaflet": "^1.5.6",
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.15",
"@types/sinon": "^7.5.1",
Expand Down
3 changes: 0 additions & 3 deletions src/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -163,9 +163,6 @@ ul.countries-list {
box-shadow: inset 0 0 0 0 rgba(0,0,0,.4),-2px -3px 5px -2px rgba(0,0,0,.4);
}

/* Used for leaflet */
.mapid { height: 180px; }

.select2-container--default.select2-container--focus .select2-selection--multiple {
border-color: #80bdff !important;
box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
Expand Down

0 comments on commit 556f313

Please sign in to comment.