Skip to content

Commit 30e4cb4

Browse files
chore(release): 2.0.1 [skip ci]
## [2.0.1](v2.0.0...v2.0.1) (2020-12-22) ### Bug Fixes * update gh-pages title ([0f2479c](0f2479c)) * update snowpack base url for gh pages ([44a47ab](44a47ab))
1 parent 0f2479c commit 30e4cb4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+44468
-1
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## [2.0.1](https://github.com/6eDesign/svelte-calendar/compare/v2.0.0...v2.0.1) (2020-12-22)
2+
3+
4+
### Bug Fixes
5+
6+
* update gh-pages title ([0f2479c](https://github.com/6eDesign/svelte-calendar/commit/0f2479c0b080579d89161e03d8d4cbd625b79d57))
7+
* update snowpack base url for gh pages ([44a47ab](https://github.com/6eDesign/svelte-calendar/commit/44a47ab2c2aabd6725e76b9daad899b2ca48cb3c))
8+
19
# [2.0.0](https://github.com/6eDesign/svelte-calendar/compare/v1.5.0...v2.0.0) (2020-12-22)
210

311

docs/build/__snowpack__/env.js

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export default {"MODE":"production","NODE_ENV":"production","SSR":false};

docs/build/_dist_/App.css

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/build/_dist_/App.css.proxy.js

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
// [snowpack] add styles to the page (skip if no document exists)
2+
if (typeof document !== 'undefined') {
3+
const code = "h1.svelte-xfd0k7{text-align:center;margin:100px 0}.container.svelte-xfd0k7{background:#eee;padding:15px;max-width:100%;width:800px;margin:0 auto}.custom-button.svelte-xfd0k7{display:inline-block;background:rgb(0, 120, 255);color:#eee;border:1px solid rgb(0, 100, 255);text-align:center;padding:15px 30px;cursor:pointer}.text-center.svelte-xfd0k7{text-align:center}.note.svelte-xfd0k7{color:tomato}";
4+
5+
const styleEl = document.createElement("style");
6+
const codeEl = document.createTextNode(code);
7+
styleEl.type = 'text/css';
8+
9+
styleEl.appendChild(codeEl);
10+
document.head.appendChild(styleEl);
11+
}

0 commit comments

Comments
 (0)