Skip to content

Commit

Permalink
the name
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeyraspopov committed Oct 13, 2023
1 parent 4b9a18b commit 6c28e40
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# dataflow
# inertial

A tiny library for integrating reactive signals anywhere.

Expand All @@ -8,7 +8,7 @@ A tiny library for integrating reactive signals anywhere.
- TypeScript typings included

```js
import { ObservableScope } from "dataflow";
import { ObservableScope } from "inertial";

/* Create isolated scope that has its own lifecycle */
let os = ObservableScope();
Expand Down
4 changes: 2 additions & 2 deletions benchmark/package-size.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { buildSync } from "esbuild";
import { gzipSync, brotliCompressSync } from "node:zlib";

console.log("dataflow");
console.log("inertial");
build(`
import { ObservableScope } from "../dataflow.js";
import { ObservableScope } from "../inertial.js";
export function vm() {
let os = ObservableScope();
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion dataflow.test.js → inertial.test.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { test, mock } from "node:test";
import { equal, deepEqual } from "node:assert/strict";
import { ObservableScope } from "./dataflow.js";
import { ObservableScope } from "./inertial.js";

/* The most basic use case is to be able to hold a value in a Signal. */
test("signal", () => {
Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "dataflow",
"name": "inertial",
"version": "0.0.0",
"type": "module",
"main": "./dataflow.js",
"module": "./dataflow.js",
"exports": "./dataflow.js",
"main": "./inertial.js",
"module": "./inertial.js",
"exports": "./inertial.js",
"files": [
"dataflow.d.ts",
"dataflow.js"
"inertial.d.ts",
"inertial.js"
]
}

0 comments on commit 6c28e40

Please sign in to comment.