Skip to content

Commit

Permalink
Merge pull request #63 from add2cal/dev
Browse files Browse the repository at this point in the history
dependency updates
  • Loading branch information
jekuer committed Jul 10, 2023
2 parents 7cbcfee + e5bcd88 commit 3a65564
Show file tree
Hide file tree
Showing 6 changed files with 614 additions and 717 deletions.
4 changes: 2 additions & 2 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ function prepareFinalFile(content, exportPhrase = '') {
if (exportPhrase != '') {
newContent = newContent.replace(
exportCodePlaceholder,
`${exportPhrase} { tzlib_get_ical_block, tzlib_get_offset, tzlib_get_timezones };`
`${exportPhrase} { tzlib_get_ical_block, tzlib_get_offset, tzlib_get_timezones };`,
);
} else {
newContent = newContent.replace(exportCodePlaceholder, '');
Expand Down Expand Up @@ -104,7 +104,7 @@ module.exports = function (grunt) {
'dist/cjs/.eslintrc.json': function (fs, fd, done) {
fs.writeSync(
fd,
'{ "extends": "../../.eslintrc.json", "env": { "node": true }, "plugins": ["commonjs"] }'
'{ "extends": "../../.eslintrc.json", "env": { "node": true }, "plugins": ["commonjs"] }',
);
done();
},
Expand Down
2 changes: 1 addition & 1 deletion generator.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Add to Calendar TimeZones iCal Library
* ++++++++++++++++++++++++++++++++++++++
*
* Version: 1.7.0
* Version: 1.7.1
* Creator: Jens Kuerschner (https://jenskuerschner.de)
* Project: https://github.com/add2cal/timezones-ical-library
* License: Apache-2.0
Expand Down
8 changes: 4 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
<script async defer data-website-id="df493802-c6d9-49f5-aa67-245f472f5a8e" src="https://a.add-to-calendar-button.com/atcba.js" data-host-url="https://a.add-to-calendar-button.com" data-domains="tz.add-to-calendar-technology.com" data-do-not-track="true"></script>

<!-- load some basic css just for this demo page here -->
<link rel="stylesheet" href="./demo_assets/css/demopage.min.css?v=1.7.0">
<link rel="stylesheet" href="./demo_assets/css/demopage.min.css?v=1.7.1">

</head>
<body>
Expand Down Expand Up @@ -263,15 +263,15 @@ <h3>Background story</h3>
This page is hosted via "GitHub Pages". It includes some very basic analytics, that still preserves your anonymity and does not use any cookies. However, mind that the GitHub privacy policy applies additionally (<a target="_blank" rel="noopener" href="https://docs.github.com/en/github/site-policy/github-privacy-statement">click here for details</a>).
</p>
</div>
<div id="tiny-version">v1.7.0</div>
<div id="tiny-version">v1.7.1</div>

</div>


<!-- js stuff -->
<script type="application/javascript" src="./dist/tzlib.js?v=1.7.0"></script>
<script type="application/javascript" src="./dist/tzlib.js?v=1.7.1"></script>
<script type="application/javascript" src="./demo_assets/js/autocomplete.min.js"></script>
<script type="application/javascript" src="./demo_assets/js/demopage.min.js?v=1.7.0"></script>
<script type="application/javascript" src="./demo_assets/js/demopage.min.js?v=1.7.1"></script>

</body>
</html>

0 comments on commit 3a65564

Please sign in to comment.