Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dist/formatting.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { times } from 'lodash';
import times from 'lodash/times.js';
import { mapMaybes } from '@freckle/maybe';
import { exhaustive } from '@freckle/exhaustive';
import Path from './path.js';
Expand Down
4 changes: 3 additions & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import { reduce, map as _map, find } from 'lodash';
import reduce from 'lodash/reduce.js';
import _map from 'lodash/map.js';
import find from 'lodash/find.js';
import moment from 'moment-timezone';
import { mkNonEmpty, mkNonEmptyFromHead, unconsOnNonEmpty } from '@freckle/non-empty';
import Path from './path.js';
Expand Down
2 changes: 1 addition & 1 deletion dist/path.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { map } from 'lodash';
import map from 'lodash/map.js';
import { exhaustive } from '@freckle/exhaustive';
const Path = {
root() {
Expand Down
2 changes: 1 addition & 1 deletion dist/test-helper.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { identity } from 'lodash';
import identity from 'lodash/identity.js';
import { Parser } from './index.js';
// Set true to see parse results
const verbose = false;
Expand Down
2 changes: 1 addition & 1 deletion src/formatting.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {times} from 'lodash'
import times from 'lodash/times.js'

import {mapMaybes} from '@freckle/maybe'
import {exhaustive} from '@freckle/exhaustive'
Expand Down
2 changes: 1 addition & 1 deletion src/index.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {forEach} from 'lodash'
import forEach from 'lodash/forEach.js'

import {
type ParserT,
Expand Down
4 changes: 3 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import {reduce, map as _map, find} from 'lodash'
import reduce from 'lodash/reduce.js'
import _map from 'lodash/map.js'
import find from 'lodash/find.js'
import moment, {type Moment} from 'moment-timezone'
import {
type NonEmptyArray,
Expand Down
2 changes: 1 addition & 1 deletion src/path.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {map} from 'lodash'
import map from 'lodash/map.js'

import {exhaustive} from '@freckle/exhaustive'

Expand Down
2 changes: 1 addition & 1 deletion src/test-helper.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {identity} from 'lodash'
import identity from 'lodash/identity.js'

import {type ParserT, Parser} from './index.js'

Expand Down