Skip to content

Commit

Permalink
dependency updates
Browse files Browse the repository at this point in the history
  • Loading branch information
jekuer committed Dec 13, 2022
1 parent 71ef971 commit e977b79
Show file tree
Hide file tree
Showing 8 changed files with 915 additions and 187 deletions.
9 changes: 1 addition & 8 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,6 @@
]
},
"plugins": ["@typescript-eslint"],
"ignorePatterns": [
"*.min.*",
"Gruntfile.js",
"zonesdb.js",
"generator.js",
"set-release.js",
"dist/"
],
"ignorePatterns": ["*.min.*", "Gruntfile.js", "zonesdb.js", "generator.js", "set-release.js", "dist/"],
"rules": {}
}
4 changes: 2 additions & 2 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Deploy GitHub Pages

on:
push:
branches: ["main"]
branches: ['main']

workflow_dispatch:

Expand All @@ -12,7 +12,7 @@ permissions:
id-token: write

concurrency:
group: "pages"
group: 'pages'
cancel-in-progress: true

jobs:
Expand Down
2 changes: 1 addition & 1 deletion api/zones.json
Original file line number Diff line number Diff line change
Expand Up @@ -594,4 +594,4 @@
"W-SU",
"WET",
"Zulu"
]
]
22 changes: 11 additions & 11 deletions generator.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,17 +43,17 @@ const overviewJson = [];
const tzNamesSecDb = [];
const tzFinal = {};
const shortenerMap = {
"<br>":"<n>",
"TZNAME:":"<tz>",
"TZOFFSETFROM:":"<of>",
"TZOFFSETTO:":"<ot>",
"DTSTART:":"<s>",
"RRULE:":"<r>",
"BEGIN:DAYLIGHT":"<bd>",
"END:DAYLIGHT":"<ed>",
"BEGIN:STANDARD":"<bs>",
"END:STANDARD":"<es>"
}
'<br>': '<n>',
'TZNAME:': '<tz>',
'TZOFFSETFROM:': '<of>',
'TZOFFSETTO:': '<ot>',
'DTSTART:': '<s>',
'RRULE:': '<r>',
'BEGIN:DAYLIGHT': '<bd>',
'END:DAYLIGHT': '<ed>',
'BEGIN:STANDARD': '<bs>',
'END:STANDARD': '<es>',
};
for (const index in tz) {
overviewJson.push(index);
const contentParts = tz[`${index}`].split('<br>LAST-MODIFIED:');
Expand Down
Loading

0 comments on commit e977b79

Please sign in to comment.