From 8fc0ab538c3043beb17e267eee17982583754623 Mon Sep 17 00:00:00 2001 From: defaultkavy Date: Fri, 2 Feb 2024 00:01:03 +0800 Subject: [PATCH] update name --- README.md | 4 ++-- global.d.ts | 4 ++-- package.json | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 2498ad2..47a7d35 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ -# Fluent.ts - A mordern way to build web. +# fluentX - Fast, fluent, simple web builder. Inspired by jQuery, but not selecting query anymore, just create it. ## Usage ```ts -import { $ } from 'fluent.ts' +import { $ } from 'fluentx' const $app = $('app').content([ $('h1').content('Hello World!') diff --git a/global.d.ts b/global.d.ts index bb6e9d8..529298a 100644 --- a/global.d.ts +++ b/global.d.ts @@ -1,8 +1,8 @@ -import { $ as fluent } from "./$index"; +import { $ as fluentx } from "./$index"; import { $Element } from "./lib/$Element"; declare global { - const $ = fluent; + const $ = fluentx; type OrMatrix = T | OrMatrix[]; type OrArray = T | T[]; type OrPromise = T | Promise; diff --git a/package.json b/package.json index d453326..8982296 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { - "name": "fluent.ts", - "description": "Front-end builder library", + "name": "fluentx", + "description": "Fast, fluent, simple web builder", "version": "0.0.1", "type": "module", "module": "index.ts",