Skip to content

Commit

Permalink
unminified main output
Browse files Browse the repository at this point in the history
  • Loading branch information
jekuer committed Feb 13, 2023
1 parent b3ba49b commit 811fda3
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 13 deletions.
3 changes: 1 addition & 2 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ module.exports = function (grunt) {
},
},
},
// minifies the main js file
// minifies the demo js file
uglify: {
options: {
compress: true,
Expand All @@ -122,7 +122,6 @@ module.exports = function (grunt) {
},
newBuild: {
files: {
'dist/tzlib.js': ['dist/tzlib.js'],
'demo_assets/js/demopage.min.js': ['demo_assets/js/demopage.js'],
},
},
Expand Down
2 changes: 1 addition & 1 deletion demo_assets/css/demopage.min.css.map

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

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.6.0
* Version: 1.6.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="f221953d-158e-46c9-88d1-3b05df00997a" src="./demo_assets/js/a.min.js" data-host-url="https://a.add-to-calendar-button.com" data-domains="tz.add-to-calendar-technology.com"></script>

<!-- load some basic css just for this demo page here -->
<link rel="stylesheet" href="./demo_assets/css/demopage.min.css?v=1.6.0">
<link rel="stylesheet" href="./demo_assets/css/demopage.min.css?v=1.6.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.6.0</div>
<div id="tiny-version">v1.6.1</div>

</div>


<!-- js stuff -->
<script type="application/javascript" src="./dist/tzlib.js?v=1.6.0"></script>
<script type="application/javascript" src="./dist/tzlib.js?v=1.6.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.6.0"></script>
<script type="application/javascript" src="./demo_assets/js/demopage.min.js?v=1.6.1"></script>

</body>
</html>
4 changes: 2 additions & 2 deletions 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 package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "timezones-ical-library",
"version": "1.6.0",
"version": "1.6.1",
"engines": {
"node": ">=14.20.0"
},
Expand Down
4 changes: 2 additions & 2 deletions src/tzlib.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
* Add to Calendar TimeZones iCal Library
* ++++++++++++++++++++++++++++++++++++++
*
* Version: 1.6.0
* Version: 1.6.1
* Creator: Jens Kuerschner (https://jenskuerschner.de)
* Project: https://github.com/add2cal/timezones-ical-library
* License: Apache-2.0
*
*/

// eslint-disable-next-line @typescript-eslint/no-unused-vars
const tzlibVersion = '1.6.0';
const tzlibVersion = '1.6.1';

// DEFINING THE DB DATA - WILL GET RE-WRITTEN WITH THE ACTUAL DATA ON BUILD
let tzlibZonesDB,
Expand Down

0 comments on commit 811fda3

Please sign in to comment.