Skip to content

Commit 412e743

Browse files
committed
v3.2.1
1 parent de65e29 commit 412e743

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 3.2.1 - TBD
1+
## 3.2.1 - 2022-04-02
22

33
- type fixes:
44
- relax exposed unknown types to `any` to avoid forcing casts

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ UnCommonJS - a minimum viable shim for `module.exports`
6161
// @name My Userscript
6262
// @description A userscript which uses some CommonJS modules
6363
// @include https://www.example.com/*
64-
// @require https://unpkg.com/@chocolateboy/[email protected].0
64+
// @require https://unpkg.com/@chocolateboy/[email protected].1
6565
// @require https://cdn.jsdelivr.net/npm/[email protected]
6666
// @require https://cdn.jsdelivr.net/npm/[email protected]
6767
// ==/UserScript==
@@ -111,7 +111,7 @@ from the `module.exports`/`exports` object:
111111
```javascript
112112
// ==UserScript==
113113
// @name My Userscript
114-
// @require https://unpkg.com/@chocolateboy/[email protected].0
114+
// @require https://unpkg.com/@chocolateboy/[email protected].1
115115
// @require https://cdn.jsdelivr.net/npm/[email protected]
116116
// @require https://cdn.jsdelivr.net/npm/[email protected]
117117
// ==/UserScript==
@@ -132,7 +132,7 @@ environments which only support ESM such as [Deno][] and [QuickJS][].
132132
Deno
133133
exit using ctrl+d or close()
134134
135-
> import 'https://unpkg.com/@chocolateboy/[email protected].0'
135+
> import 'https://unpkg.com/@chocolateboy/[email protected].1'
136136
> import 'https://unpkg.com/[email protected]'
137137
138138
> exports.parse('Hi, **this** _is_ [Markdown](#markdown)!')
@@ -380,7 +380,7 @@ doesn't. This means that the following won't work portably:
380380
// ==UserScript==
381381
// @name Non-Portable Userscript
382382
// @include *
383-
// @require https://unpkg.com/@chocolateboy/[email protected].0
383+
// @require https://unpkg.com/@chocolateboy/[email protected].1
384384
// @require https://cdn.jsdelivr.net/npm/[email protected]
385385
// ==/UserScript==
386386

@@ -454,7 +454,7 @@ The following NPM scripts are available:
454454

455455
# VERSION
456456

457-
3.2.0
457+
3.2.1
458458

459459
# AUTHOR
460460

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@chocolateboy/uncommonjs",
3-
"version": "3.2.0",
3+
"version": "3.2.1",
44
"description": "A minimum viable shim for module.exports",
55
"author": "chocolateboy",
66
"repository": "https://github.com/chocolateboy/uncommonjs",

0 commit comments

Comments
 (0)