Skip to content

Commit

Permalink
Fixed pkg tests
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenwf committed Oct 2, 2023
1 parent 46e6d6e commit 5cdc37a
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
18 changes: 9 additions & 9 deletions pkg-tests/node-load.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
const { Vault } = require('@iiif/vault');
const events = require('@iiif/vault-helpers/events');
const i18n = require('@iiif/vault-helpers/i18n');
const reacti18next = require('@iiif/vault-helpers/react-i18next');
const styles = require('@iiif/vault-helpers/styles');
const thumbnail = require('@iiif/vault-helpers/thumbnail');
const annotationTargets = require('@iiif/vault-helpers/annotation-targets');
const contentState = require('@iiif/vault-helpers/content-state');
const paintingAnnotations = require('@iiif/vault-helpers/painting-annotations');
const { Vault } = require('@iiif/helpers/vault');
const events = require('@iiif/helpers/events');
const i18n = require('@iiif/helpers/i18n');
const reacti18next = require('@iiif/helpers/react-i18next');
const styles = require('@iiif/helpers/styles');
const thumbnail = require('@iiif/helpers/thumbnail');
const annotationTargets = require('@iiif/helpers/annotation-targets');
const contentState = require('@iiif/helpers/content-state');
const paintingAnnotations = require('@iiif/helpers/painting-annotations');

const vault = new Vault();

Expand Down
18 changes: 9 additions & 9 deletions pkg-tests/node-load.mjs
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import * as vault from '@iiif/vault';
import * as events from '@iiif/vault-helpers/events';
import * as i18n from '@iiif/vault-helpers/i18n';
import * as reacti18next from '@iiif/vault-helpers/react-i18next';
import * as styles from '@iiif/vault-helpers/styles';
import * as thumbnail from '@iiif/vault-helpers/thumbnail';
import * as annotationTargets from '@iiif/vault-helpers/annotation-targets';
import * as contentState from '@iiif/vault-helpers/content-state';
import * as paintingAnnotations from '@iiif/vault-helpers/painting-annotations';
import * as vault from '@iiif/helpers/vault';
import * as events from '@iiif/helpers/events';
import * as i18n from '@iiif/helpers/i18n';
import * as reacti18next from '@iiif/helpers/react-i18next';
import * as styles from '@iiif/helpers/styles';
import * as thumbnail from '@iiif/helpers/thumbnail';
import * as annotationTargets from '@iiif/helpers/annotation-targets';
import * as contentState from '@iiif/helpers/content-state';
import * as paintingAnnotations from '@iiif/helpers/painting-annotations';

console.log(vault);
console.log(events);
Expand Down

0 comments on commit 5cdc37a

Please sign in to comment.