Skip to content

Commit

Permalink
feat: change lib name to marine-ui
Browse files Browse the repository at this point in the history
  • Loading branch information
KelvinQiu802 committed Jan 20, 2023
1 parent b9225da commit b976c52
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .dumirc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ import { defineConfig } from 'dumi';
export default defineConfig({
outputPath: 'docs-dist',
themeConfig: {
name: 'rcc-test',
name: 'marine-ui',
},
});
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# react-component-test
# Marine UI

[![NPM version](https://img.shields.io/npm/v/react-component-test.svg?style=flat)](https://npmjs.org/package/react-component-test)
[![NPM downloads](http://img.shields.io/npm/dm/react-component-test.svg?style=flat)](https://npmjs.org/package/react-component-test)
[![codecov](https://codecov.io/gh/ApplePotato/dumi-setup/branch/master/graph/badge.svg?token=A7W62H6NTQ)](https://codecov.io/gh/ApplePotato/dumi-setup)
![CI](https://github.com/ApplePotato/dumi-setup/actions/workflows/ci.yml/badge.svg)
[![NPM version](https://img.shields.io/npm/v/marine-ui.svg?style=flat)](https://npmjs.org/package/marine-ui)
[![NPM downloads](http://img.shields.io/npm/dm/marine-ui.svg?style=flat)](https://npmjs.org/package/marine-ui)
[![codecov](https://codecov.io/gh/MarineUI/marine-ui/branch/master/graph/badge.svg?token=A7W62H6NTQ)](https://codecov.io/gh/MarineUI/marine-ui)
![CI](https://github.com/MarineUI/marine-ui/actions/workflows/ci.yml/badge.svg)

## Usage

Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
hero:
title: rcc-test
title: marine-ui
description:
actions:
- text: Hello
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rcc-test",
"version": "0.0.2",
"name": "marine-ui",
"version": "0.0.1",
"description": "",
"license": "MIT",
"module": "dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/Button/demo/basic.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { MyButton } from 'rcc-test';
import { MyButton } from 'marine-ui';
import React from 'react';

export default function BasicButtonDemo() {
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
"baseUrl": "./",
"paths": {
"@@/*": [".dumi/tmp/*"],
"rcc-test": ["src"],
"rcc-test/*": ["src/*", "*"]
"marine-ui": ["src"],
"marine-ui/*": ["src/*", "*"]
}
},
"include": [".dumi/**/*", ".dumirc.ts", "src/**/*"]
Expand Down

0 comments on commit b976c52

Please sign in to comment.