Unify domvm versions

This commit is contained in:
Timothy Farrell 2017-11-24 21:29:00 -06:00
parent cc1c193fb1
commit be0f613ce0
7 changed files with 8 additions and 7 deletions

View File

@ -1,5 +1,4 @@
// import { createView } from 'domvm/dist/dev/domvm.dev.js';
import { createView } from 'domvm/dist/micro/domvm.micro.js';
import { createView } from './utils/domvm.js';
import * as styles from './app.css';
import { GalleryView } from './interface/gallery.js';

View File

@ -1,4 +1,4 @@
import { defineView, defineElement as el } from 'domvm';
import { defineView, defineElement as el } from '../utils/domvm.js';
import { ImageType } from '../data/image.js';
import { FileType } from '../data/file.js';

View File

@ -1,4 +1,4 @@
import { defineElement as el } from 'domvm';
import { defineElement as el } from '../utils/domvm.js';
import { prop, computed, bundle } from 'frptools';
import { ImageType } from '../data/image.js';

View File

@ -1,4 +1,4 @@
import { defineView as vw } from 'domvm';
import { defineView as vw } from '../utils/domvm.js';
import { ImageType } from '../data/image.js';
import { AlbumType } from '../data/album.js';
import { ThumbnailView } from './thumbnail.js';

View File

@ -1,4 +1,4 @@
import { defineView as vw, defineElement as el } from 'domvm';
import { defineView as vw, defineElement as el } from '../utils/domvm.js';
import { prop, computed } from 'frptools';
import { isObject } from '../utils/comparators.js';

View File

@ -1,6 +1,6 @@
import Styletron from 'styletron';
import { injectStyle as _injectStyle } from 'styletron-utils';
import { defineElement } from 'domvm';
import { defineElement } from '../utils/domvm.js';
import { isObject } from '../utils/comparators.js';
const styletronSingleton = new Styletron();

View File

@ -0,0 +1,2 @@
// export * from 'domvm/dist/dev/domvm.dev.js';
export * from 'domvm/dist/micro/domvm.micro.js';