Skip to content

Commit 5a96b09

Browse files
committed
refactor(plugin): add exports for svelte 5 and cleanup deps + demo code
1 parent ab8e6cd commit 5a96b09

16 files changed

+1837
-3988
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
# generated
2222
.vercel
2323
/node_modules
24+
/dist
2425

2526
# testing
2627
coverage

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.1.2](https://github.com/svelte-plugins/datepicker/releases/tag/v0.1.0) - 2023-11-24
9+
10+
- 🏗 build(tooling): fix linting, formatting and precommit hooks by
11+
12+
## [0.1.1](https://github.com/svelte-plugins/datepicker/releases/tag/v0.1.0) - 2023-11-23
13+
14+
- refactor(picker): updates to dev tooling and general code cleanup
15+
816
## [0.1.0](https://github.com/svelte-plugins/datepicker/releases/tag/v0.1.0) - 2023-11-22
917

1018
- Initial release

dist/index.js

-1
This file was deleted.

dist/index.mjs

-2,571
This file was deleted.
File renamed without changes.

docs/index.html

+5-4
Original file line numberDiff line numberDiff line change
@@ -6,24 +6,25 @@
66
<title>@svelte-plugins/datepicker</title>
77

88
<link rel="icon" type="image/png" href="./favicon.png" />
9-
<link rel="stylesheet" href="./global.css" />
9+
<link rel="stylesheet" type="text/css" href="./src/styles/styles.scss">
1010

11-
<meta name="description" content="A simple rule-based approach to tracking element viewability." />
11+
<meta name="description" content="A simple datepicker component designed for Svelte." />
1212
<meta name="keywords" content="datepicker, dates, picker, time picker, daterange, daterange picker, timepicker, calendar, svelte component" />
1313

1414
<meta property="og:url" content="" />
1515
<meta property="og:title" content="@svelte-plugins/datepicker" />
16-
<meta property="og:description" content="A simple datepicker designed for Svelte." />
16+
<meta property="og:description" content="A simple datepicker component designed for Svelte." />
1717
<meta property="og:image" content="favicon.png" />
1818

1919
<meta name="twitter:card" content="summary" />
2020
<meta name="twitter:creator" content="@norcalkieran" />
2121
<meta name="twitter:title" content="@svelte-plugins/datepicker" />
2222
<meta name="twitter:description" content="A simple datepicker component designed for Svelte." />
2323
<meta name="twitter:image" content="favicon.png" />
24+
2425
</head>
2526
<body>
26-
<a href="https://github.com/svelte-plugins/datepicker" class="github-ribbon"><img loading="lazy" width="149" height="149" src="https://github.blog/wp-content/uploads/2008/12/forkme_right_darkblue_121621.png?resize=149%2C149" class="attachment-full size-full" alt="Fork me on GitHub" data-recalc-dims="1"></a>
27+
<a href="https://github.com/svelte-plugins/datepicker" class="github-ribbon"><img loading="lazy" width="300" height="300" src="https://github.blog/wp-content/uploads/2008/12/forkme_right_darkblue_121621.png?resize=300%2C300" class="attachment-full size-full" alt="Fork me on GitHub" data-recalc-dims="1"></a>
2728
<script type="module" src="/src/index.js"></script>
2829
</body>
2930
</html>

0 commit comments

Comments
 (0)