Skip to content

Commit 5c6e994

Browse files
author
George Treviranus
committed
Merge branch 'develop' into main
2 parents 81b0462 + 5f65887 commit 5c6e994

File tree

4 files changed

+14
-9
lines changed

4 files changed

+14
-9
lines changed

.npmignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ debug.log
1010
__tests__/
1111

1212
# configs
13+
.circleci
1314
.browserslistrc
1415
.eslintignore
1516
.eslintrc.json

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<h1 align="center">Core Flux</h1>
2-
<p align="center">0.5kb functional flux utility. Control the flow of state data between subscribers.</p>
2+
<p align="center">½kb functional flux utility. Control the flow of state data between subscribers.</p>
33
<br>
44
<p align="center">
55
<a href="https://www.npmjs.com/package/core-flux"><img src="https://img.shields.io/npm/v/core-flux.svg?sanitize=true" alt="Version"></a>
@@ -40,16 +40,16 @@ The CDN puts the library on `window.CoreFlux`.
4040
<!-- The unminified bundle for development -->
4141
<script
4242
type="text/javascript"
43-
src="https://cdn.jsdelivr.net/npm/core-flux@1.0.8/dist/core-flux.js"
44-
integrity="sha256-TCKYuwkGWgcQfQo/Zgmyi4iWGQc0MpxiH7u3dkw8cYQ="
43+
src="https://cdn.jsdelivr.net/npm/core-flux@1.1.0/dist/core-flux.js"
44+
integrity="sha256-Wu1e80Ncp28IBDil/BBiZFPmhlAFHnjgJpAw2kHpCEU="
4545
crossorigin="anonymous"
4646
></script>
4747

4848
<!-- Minified/uglified bundle for production -->
4949
<script
5050
type="text/javascript"
51-
src="https://cdn.jsdelivr.net/npm/core-flux@1.0.8/dist/core-flux.min.js"
52-
integrity="sha256-GkyVkyElHTpRsSZtx4eOlrIU80RWxK3UAMJp4ssqz0k="
51+
src="https://cdn.jsdelivr.net/npm/core-flux@1.1.0/dist/core-flux.min.js"
52+
integrity="sha256-CRbAMla4kdBDdcTQaGrlAr8Ces47xYF7qSqpqKuR41c="
5353
crossorigin="anonymous"
5454
></script>
5555
```

package-lock.json

Lines changed: 6 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "core-flux",
3-
"version": "1.0.8",
3+
"version": "1.1.0",
44
"description": "Manage your own state.",
55
"main": "lib/core-flux.cjs.min.js",
66
"module": "lib/core-flux.es.min.js",
77
"browser": "dist/core-flux.min.js",
88
"type": "module",
99
"scripts": {
10-
"test": "jest --passWithNoTests",
10+
"test": "jest",
1111
"test:watch": "jest --watch",
1212
"watch": "rollup -c rollup.config.demo.js -w",
1313
"build": "BABEL_ENV=build rollup -c",

0 commit comments

Comments
 (0)