Skip to content

Post Publish Build #5

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
}
function get_current_component() {
if (!current_component)
throw new Error(`Function called outside component initialization`);
throw new Error('Function called outside component initialization');
return current_component;
}
function beforeUpdate(fn) {
Expand Down Expand Up @@ -112,6 +112,7 @@
set_current_component(component);
update(component.$$);
}
set_current_component(null);
dirty_components.length = 0;
while (binding_callbacks.length)
binding_callbacks.pop()();
Expand Down Expand Up @@ -469,7 +470,7 @@
return result;
};

/* src/index.svelte generated by Svelte v3.24.1 */
/* src/index.svelte generated by Svelte v3.29.4 */

function create_fragment(ctx) {
let div;
Expand Down
5 changes: 3 additions & 2 deletions index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ function set_current_component(component) {
}
function get_current_component() {
if (!current_component)
throw new Error(`Function called outside component initialization`);
throw new Error('Function called outside component initialization');
return current_component;
}
function beforeUpdate(fn) {
Expand Down Expand Up @@ -106,6 +106,7 @@ function flush() {
set_current_component(component);
update(component.$$);
}
set_current_component(null);
dirty_components.length = 0;
while (binding_callbacks.length)
binding_callbacks.pop()();
Expand Down Expand Up @@ -463,7 +464,7 @@ const ATOMIC_DATA_TYPE = ['string', 'number', 'function', 'boolean', 'undefined'
return result;
};

/* src/index.svelte generated by Svelte v3.24.1 */
/* src/index.svelte generated by Svelte v3.29.4 */

function create_fragment(ctx) {
let div;
Expand Down