urbit-ob

JavaScript utilities for phonemic base wrangling.
Log | Files | Refs | README

commit 0c8fcdbae7d3e40392a7a84697cf43e684516731
parent c7e87cc8b45f1e3532d0244d59a7253aa4e21358
Author: Jared Tobin <jared@jtobin.io>
Date:   Mon,  9 Sep 2019 18:48:27 -0230

release: patch version bump (4.1.3 -> 4.1.4)

Further fixes to the 'browser' specification.  Drops the single-line
"simple" spec in favour of the object version.  In this case we give a
hint to downstream bundlers to replace instances of "urbit-ob" with the
browser bundle we distribute.

(This helped fix an issue that occurred while running urbit-ob as a
dependency of urbit-key-generation in Bridge.)

Diffstat:
MCHANGELOG | 6++++++
Mpackage-lock.json | 2+-
Mpackage.json | 6++++--
3 files changed, 11 insertions(+), 3 deletions(-)

diff --git a/CHANGELOG b/CHANGELOG @@ -1,5 +1,11 @@ # Changelog +- 4.1.4 (2019-09-09) + * Further fixes to the 'browser' specification [1]. Drops the single-line + "simple" spec in favour of the object version. In this case we give a + hint to downstream bundlers to replace instances of "urbit-ob" with the + browser bundle we distribute. + - 4.1.3 (2019-09-09) * Further fixes to the 'browser' specification. Uses the single-line spec outlined in [1] that simply provides an entry point hint for diff --git a/package-lock.json b/package-lock.json @@ -1,6 +1,6 @@ { "name": "urbit-ob", - "version": "4.1.3", + "version": "4.1.4", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json @@ -1,10 +1,12 @@ { "name": "urbit-ob", - "version": "4.1.3", + "version": "4.1.4", "license": "MIT", "description": "Utilities for Hoon-style atom printing and conversion", "main": "src/index.js", - "browser": "./dist/index.js", + "browser": { + "urbit-ob": "./dist/index.js" + }, "scripts": { "build": "mkdir -p dist && rollup -c rollup.config.js", "test": "nyc mocha --reporter spec",