halfcab 13.0.8 → 13.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5,7 +5,7 @@ jobs:
5
5
  parallelism: 1
6
6
  shell: /bin/bash --login
7
7
  docker:
8
- - image: circleci/node:12.16.1
8
+ - image: cimg/node:18.18.0
9
9
  steps:
10
10
  - checkout
11
11
  - run: export PATH="~/lorengreenfield/halfcab/node_modules/.bin:$PATH"
package/halfcab.mjs CHANGED
@@ -1,7 +1,7 @@
1
1
  import shiftyRouterModule from 'shifty-router'
2
- import hrefModule from 'shifty-router/href'
3
- import historyModule from 'shifty-router/history'
4
- import createLocation from 'shifty-router/create-location'
2
+ import hrefModule from 'shifty-router/href.js'
3
+ import historyModule from 'shifty-router/history.js'
4
+ import createLocation from 'shifty-router/create-location.js'
5
5
  import bel from 'nanohtml'
6
6
  import update from 'nanomorph'
7
7
  import axios from 'axios'
@@ -9,7 +9,7 @@ import cssInject from 'csjs-inject'
9
9
  import merge from 'deepmerge'
10
10
  import marked from 'marked'
11
11
  import { decode } from 'html-entities'
12
- import eventEmitter from './eventEmitter'
12
+ import eventEmitter from './eventEmitter/index.mjs'
13
13
  import qs from 'qs'
14
14
  import LRU from 'nanolru'
15
15
  import Component from 'nanocomponent'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "halfcab",
3
- "version": "13.0.8",
3
+ "version": "13.0.9",
4
4
  "type": "module",
5
5
  "description": "A simple universal JavaScript framework focused on making use of es2015 template strings to build components.",
6
6
  "main": "halfcab.mjs",