Skip to content
This repository has been archived by the owner on Sep 5, 2022. It is now read-only.

Commit

Permalink
fix: import es6 module directly for tree shaking
Browse files Browse the repository at this point in the history
  • Loading branch information
sebnitu committed Aug 18, 2020
1 parent 05e3303 commit 7f16d69
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/anchor.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { camelCase } from '@vrembem/core';
import { camelCase } from '@vrembem/core/src/js/camelCase';
import { anchorPositionGet } from './anchorPosition';

export const anchorGet = (el, settings) => {
Expand Down
2 changes: 1 addition & 1 deletion src/state.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { camelCase } from '@vrembem/core';
import { camelCase } from '@vrembem/core/src/js/camelCase';

export const stateSave = (settings) => {
const state = {};
Expand Down

0 comments on commit 7f16d69

Please sign in to comment.