.js file endings

pull/8569/head
Simon Holthausen 3 years ago
parent c4a9f74bda
commit 0455c56617

@ -1,5 +1,5 @@
import { cubicOut } from '../easing'; import { cubicOut } from '../easing/index.js';
import { is_function } from '../internal'; import { is_function } from '../internal/index.js';
/** /**
* @param {Element} node * @param {Element} node

@ -2,7 +2,7 @@
Adapted from https://github.com/mattdesl Adapted from https://github.com/mattdesl
Distributed under MIT License https://github.com/mattdesl/eases/blob/master/LICENSE.md Distributed under MIT License https://github.com/mattdesl/eases/blob/master/LICENSE.md
*/ */
export { identity as linear } from '../internal'; export { identity as linear } from '../internal/index.js';
/** /**
* @param {number} t * @param {number} t

@ -1,4 +1,4 @@
import './ambient'; import './ambient.js';
export { export {
onMount, onMount,
onDestroy, onDestroy,
@ -12,4 +12,4 @@ export {
createEventDispatcher, createEventDispatcher,
SvelteComponentDev as SvelteComponent, SvelteComponentDev as SvelteComponent,
SvelteComponentTyped SvelteComponentTyped
} from './internal'; } from './internal/index.js';

@ -1,5 +1,5 @@
import { writable } from '../store'; import { writable } from '../store/index.js';
import { loop, now } from '../internal'; import { loop, now } from '../internal/index.js';
import { is_date } from './utils.js'; import { is_date } from './utils.js';
/** /**

@ -1,6 +1,6 @@
import { writable } from '../store'; import { writable } from '../store/index.js';
import { assign, loop, now } from '../internal'; import { assign, loop, now } from '../internal/index.js';
import { linear } from '../easing'; import { linear } from '../easing/index.js';
import { is_date } from './utils.js'; import { is_date } from './utils.js';
/** @returns {(t: any) => any} */ /** @returns {(t: any) => any} */

@ -5,7 +5,7 @@ import {
safe_not_equal, safe_not_equal,
is_function, is_function,
get_store_value get_store_value
} from '../internal'; } from '../internal/index.js';
const subscriber_queue = []; const subscriber_queue = [];

Loading…
Cancel
Save