repos / starfx

supercharged async flow control library.
git clone https://github.com/neurosnap/starfx.git

commit
0cf7617
parent
7629481
author
Eric Bower
date
2023-07-11 02:55:15 +0000 UTC
fix: npm release
1 files changed,  +10, -7
M npm.ts
M npm.ts
+10, -7
 1@@ -28,11 +28,11 @@ async function main() {
 2       },
 3     ],
 4     mappings: {
 5-      "https://deno.land/x/effection@3.0.0-alpha.7/mod.ts": {
 6+      "https://deno.land/x/effection@3.0.0-alpha.9/mod.ts": {
 7         name: "effection",
 8-        version: "3.0.0-alpha.7",
 9+        version: "3.0.0-alpha.9",
10       },
11-      "https://esm.sh/react@18.2.0": {
12+      "https://esm.sh/react@18.2.0?pin=v122": {
13         name: "react",
14         version: "^18.2.0",
15         peerDependency: true,
16@@ -60,19 +60,22 @@ async function main() {
17       deno: false,
18     },
19     test: false,
20-    typeCheck: true,
21+    typeCheck: "both",
22     compilerOptions: {
23       target: "ES2020",
24       sourceMap: true,
25-      lib: ["dom", "dom.iterable", "esnext"],
26+      lib: ["DOM", "DOM.Iterable", "ESNext"],
27     },
28     package: {
29       name: "starfx",
30       version,
31-      description: "Supercharged async flow control library",
32+      description: "Async flow control and state management system for deno, node, and browser",
33       license: "MIT",
34+      author: {
35+        name: "Eric Bower",
36+        email: "me@erock.io"
37+      },
38       repository: {
39-        author: "me@erock.io",
40         type: "git",
41         url: "git+https://github.com/neurosnap/starfx.git",
42       },