Skip to content

Commit

Permalink
Update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
ingalls committed Apr 15, 2024
1 parent f575215 commit fe37512
Show file tree
Hide file tree
Showing 6 changed files with 50 additions and 17 deletions.
9 changes: 0 additions & 9 deletions .eslintrc.json

This file was deleted.

4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@

## Version History

### v1.8.0

- :rocket: Experiement with date features

### v1.7.2

- :arrow_up: Update ETL Dep
Expand Down
12 changes: 12 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import eslint from '@eslint/js';
import tseslint from 'typescript-eslint';

export default tseslint.config(
eslint.configs.recommended,
...tseslint.configs.recommended,
{
"rules": {
"@typescript-eslint/no-explicit-any": "warn"
}
}
);
35 changes: 30 additions & 5 deletions package-lock.json

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

5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,10 @@
"license": "ISC",
"devDependencies": {
"@types/xml2js": "^0.4.12",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
"typescript": "^5.0.4",
"typescript-eslint": "^7.6.0"
},
"dependencies": {
"@sinclair/typebox": "^0.32.20",
Expand Down
2 changes: 2 additions & 0 deletions task.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,8 @@ export default class Task extends ETL {
}
}

fire.date = moment(fire.date).seconds(0).milliseconds(0).toISOString().replace(/:00.000Z/, '').replace('T', ' ');

const feat: Feature<Geometry, Record<string, string>> = {
id: `wildweb-${fire.uuid}`,
type: 'Feature',
Expand Down

0 comments on commit fe37512

Please sign in to comment.