Skip to content
This repository has been archived by the owner on Feb 17, 2021. It is now read-only.

Commit

Permalink
chore: fix path for lib
Browse files Browse the repository at this point in the history
  • Loading branch information
mg901 committed Nov 10, 2019
1 parent e45805f commit 0a02042
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/make-breakpoints-map.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
var validateConfig = require('./validate-config').validateConfig;
var utils = require('./utils');
var utils = require('./lib');

var FONT_SIZE = /\b\d+(\.\d+)?(px|em)\b/g;
var POSITIVE_OR_NEGATIVE_INT_OR_FLOAT_NUM_AT_END_OF_STRING = /-?\b\d+(\.\d+)?\b\s*$/g;
Expand Down
7 changes: 4 additions & 3 deletions src/test/utils.spec.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
const { deepObjectValues, flatten, invariant } = require('../utils');

const {
deepObjectValues,
flatten,
invariant,
merge,
omit,
isNumeric,
Expand All @@ -9,7 +10,7 @@ const {
ratioHasStep,
hasPx,
isValidStep,
} = require('../utils');
} = require('../lib');

describe('merge', () => {
it('merge all transfered objects', () => {
Expand Down
2 changes: 1 addition & 1 deletion src/validate-config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
var utils = require('./utils');
var utils = require('./lib');

var ERROR_PREFIX = '[typographist]: Check your config. ';

Expand Down

0 comments on commit 0a02042

Please sign in to comment.