Skip to content

Commit

Permalink
rename
Browse files Browse the repository at this point in the history
  • Loading branch information
axetroy committed Aug 5, 2023
1 parent a8068ba commit ecd704c
Show file tree
Hide file tree
Showing 149 changed files with 463 additions and 475 deletions.
12 changes: 0 additions & 12 deletions .changeset/purple-tools-change.md

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ IconFont Componentized is a series of tools for converting IconFont into compone
1. Install CLI

```bash
npm install @axetroy/iconfont-componentized-cli -D
npm install @iconfont-componentized/cli -D
```

2. Add script to your `package.json`
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": "@axetroy/iconfont-componentized",
"version": "1.0.4",
"name": "iconfont-componentized",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:axetroy/iconfont-componentized.git",
"author": "Axetroy <axetroy.dev@gmail.com>",
Expand Down
File renamed without changes.
79 changes: 79 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
# @iconfont-componentized/cli

## 1.0.10

### Patch Changes

- 2f85a33: bump
- Updated dependencies [2f85a33]
- @iconfont-componentized/gen-react@1.0.10
- @iconfont-componentized/gen-svg@1.0.10
- @iconfont-componentized/gen-vue@1.0.10
- @iconfont-componentized/gen-web-component@1.0.10
- @iconfont-componentized/parser@1.0.10
- @iconfont-componentized/share@1.0.10

## 1.0.9

### Patch Changes

- b9db6f7: bump
- Updated dependencies [b9db6f7]
- @iconfont-componentized/gen-react@1.0.9
- @iconfont-componentized/gen-svg@1.0.9
- @iconfont-componentized/gen-vue@1.0.9
- @iconfont-componentized/gen-web-component@1.0.9
- @iconfont-componentized/parser@1.0.9
- @iconfont-componentized/share@1.0.9

## 1.0.8

### Patch Changes

- e0bcc82: update
- Updated dependencies [e0bcc82]
- @iconfont-componentized/gen-react@1.0.8
- @iconfont-componentized/gen-svg@1.0.8
- @iconfont-componentized/gen-vue@1.0.8
- @iconfont-componentized/gen-web-component@1.0.8
- @iconfont-componentized/parser@1.0.8
- @iconfont-componentized/share@1.0.8

## 1.0.7

### Patch Changes

- 0bc6ec2: bump
- Updated dependencies [0bc6ec2]
- @iconfont-componentized/gen-react@1.0.7
- @iconfont-componentized/gen-svg@1.0.7
- @iconfont-componentized/gen-vue@1.0.7
- @iconfont-componentized/gen-web-component@1.0.7
- @iconfont-componentized/parser@1.0.7
- @iconfont-componentized/share@1.0.7

## 1.0.6

### Patch Changes

- 82d173a: update version
- Updated dependencies [82d173a]
- @iconfont-componentized/gen-react@1.0.6
- @iconfont-componentized/gen-svg@1.0.6
- @iconfont-componentized/gen-vue@1.0.6
- @iconfont-componentized/gen-web-component@1.0.6
- @iconfont-componentized/parser@1.0.6
- @iconfont-componentized/share@1.0.6

## 1.0.5

### Patch Changes

- 55fcd0a: update
- Updated dependencies [55fcd0a]
- @iconfont-componentized/gen-react@1.0.5
- @iconfont-componentized/gen-svg@1.0.5
- @iconfont-componentized/gen-vue@1.0.5
- @iconfont-componentized/gen-web-component@1.0.5
- @iconfont-componentized/parser@1.0.5
- @iconfont-componentized/share@1.0.5
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@axetroy/iconfont-componentized-cli",
"version": "1.0.10",
"name": "@iconfont-componentized/cli",
"version": "0.1.0",
"bin": {
"iconfont-componentized": "./dist/index.js"
},
Expand All @@ -21,12 +21,12 @@
"@types/yargs": "^17.0.24"
},
"dependencies": {
"@axetroy/iconfont-componentized-gen-react": "workspace:*",
"@axetroy/iconfont-componentized-gen-svg": "workspace:*",
"@axetroy/iconfont-componentized-gen-vue": "workspace:*",
"@axetroy/iconfont-componentized-gen-web-component": "workspace:*",
"@axetroy/iconfont-componentized-parser": "workspace:*",
"@axetroy/iconfont-componentized-share": "workspace:*",
"@iconfont-componentized/gen-react": "workspace:*",
"@iconfont-componentized/gen-svg": "workspace:*",
"@iconfont-componentized/gen-vue": "workspace:*",
"@iconfont-componentized/gen-web-component": "workspace:*",
"@iconfont-componentized/parser": "workspace:*",
"@iconfont-componentized/share": "workspace:*",
"yargs": "^17.7.2"
}
}
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import path from "path";
import yargs from "yargs/yargs";
import { hideBin } from "yargs/helpers";
import { parseFromURL } from "@axetroy/iconfont-componentized-parser";
import { ComponentGenerator } from "@axetroy/iconfont-componentized-share";
import ReactComponentGenerator from "@axetroy/iconfont-componentized-gen-react";
import SVGComponentGenerator from "@axetroy/iconfont-componentized-gen-svg";
import VueComponentGenerator from "@axetroy/iconfont-componentized-gen-vue";
import WebComponentComponentGenerator from "@axetroy/iconfont-componentized-gen-web-component";
import { parseFromURL } from "@iconfont-componentized/parser";
import { ComponentGenerator } from "@iconfont-componentized/share";
import ReactComponentGenerator from "@iconfont-componentized/gen-react";
import SVGComponentGenerator from "@iconfont-componentized/gen-svg";
import VueComponentGenerator from "@iconfont-componentized/gen-Vue";
import WebComponentComponentGenerator from "@iconfont-componentized/gen-web-component";

const argv = yargs(hideBin(process.argv)).argv;

Expand Down
File renamed without changes.
55 changes: 55 additions & 0 deletions packages/gen-dom/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
# @iconfont-componentized/gen-svg

## 1.0.10

### Patch Changes

- 2f85a33: bump
- Updated dependencies [2f85a33]
- @iconfont-componentized/parser@1.0.10
- @iconfont-componentized/share@1.0.10

## 1.0.9

### Patch Changes

- b9db6f7: bump
- Updated dependencies [b9db6f7]
- @iconfont-componentized/parser@1.0.9
- @iconfont-componentized/share@1.0.9

## 1.0.8

### Patch Changes

- e0bcc82: update
- Updated dependencies [e0bcc82]
- @iconfont-componentized/parser@1.0.8
- @iconfont-componentized/share@1.0.8

## 1.0.7

### Patch Changes

- 0bc6ec2: bump
- Updated dependencies [0bc6ec2]
- @iconfont-componentized/parser@1.0.7
- @iconfont-componentized/share@1.0.7

## 1.0.6

### Patch Changes

- 82d173a: update version
- Updated dependencies [82d173a]
- @iconfont-componentized/parser@1.0.6
- @iconfont-componentized/share@1.0.6

## 1.0.5

### Patch Changes

- 55fcd0a: update
- Updated dependencies [55fcd0a]
- @iconfont-componentized/parser@1.0.5
- @iconfont-componentized/share@1.0.5
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { parseFromURL } from "@axetroy/iconfont-componentized-parser";
import { parseFromURL } from "@iconfont-componentized/parser";
import DOMComponentGenerator from "../src/index";
import path from "path";

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@axetroy/iconfont-componentized-gen-dom",
"version": "1.0.10",
"name": "@iconfont-componentized/gen-dom",
"version": "0.1.0",
"main": "dist/index.js",
"license": "ANTI-996",
"files": [
Expand All @@ -20,8 +20,8 @@
"vite": "^4.4.8"
},
"dependencies": {
"@axetroy/iconfont-componentized-parser": "workspace:*",
"@axetroy/iconfont-componentized-share": "workspace:*",
"@iconfont-componentized/parser": "workspace:*",
"@iconfont-componentized/share": "workspace:*",
"camelcase": "^6.0.0"
}
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Icon } from "@axetroy/iconfont-componentized-parser";
import { generateSvgDOM, ComponentGenerator, writeComponentsToDisk, Component } from "@axetroy/iconfont-componentized-share";
import { Icon } from "@iconfont-componentized/parser";
import { generateSvgDOM, ComponentGenerator, writeComponentsToDisk, Component } from "@iconfont-componentized/share";
import camelcase from "camelcase";

const header = `// generate by iconfont-componentized`;
Expand Down
File renamed without changes.
File renamed without changes.
55 changes: 55 additions & 0 deletions packages/gen-react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
# @iconfont-componentized/gen-react

## 1.0.10

### Patch Changes

- 2f85a33: bump
- Updated dependencies [2f85a33]
- @iconfont-componentized/parser@1.0.10
- @iconfont-componentized/share@1.0.10

## 1.0.9

### Patch Changes

- b9db6f7: bump
- Updated dependencies [b9db6f7]
- @iconfont-componentized/parser@1.0.9
- @iconfont-componentized/share@1.0.9

## 1.0.8

### Patch Changes

- e0bcc82: update
- Updated dependencies [e0bcc82]
- @iconfont-componentized/parser@1.0.8
- @iconfont-componentized/share@1.0.8

## 1.0.7

### Patch Changes

- 0bc6ec2: bump
- Updated dependencies [0bc6ec2]
- @iconfont-componentized/parser@1.0.7
- @iconfont-componentized/share@1.0.7

## 1.0.6

### Patch Changes

- 82d173a: update version
- Updated dependencies [82d173a]
- @iconfont-componentized/parser@1.0.6
- @iconfont-componentized/share@1.0.6

## 1.0.5

### Patch Changes

- 55fcd0a: update
- Updated dependencies [55fcd0a]
- @iconfont-componentized/parser@1.0.5
- @iconfont-componentized/share@1.0.5
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { parseFromURL } from "@axetroy/iconfont-componentized-parser";
import { parseFromURL } from "@iconfont-componentized/parser";
import ReactComponentGenerator from "../src/index";
import path from "path";

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@axetroy/iconfont-componentized-gen-react",
"version": "1.0.10",
"name": "@iconfont-componentized/gen-react",
"version": "0.1.0",
"main": "dist/index.js",
"license": "ANTI-996",
"files": [
Expand All @@ -25,8 +25,8 @@
"vite": "^4.4.8"
},
"dependencies": {
"@axetroy/iconfont-componentized-parser": "workspace:*",
"@axetroy/iconfont-componentized-share": "workspace:*",
"@iconfont-componentized/parser": "workspace:*",
"@iconfont-componentized/share": "workspace:*",
"camelcase": "^6.0.0"
}
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Icon } from "@axetroy/iconfont-componentized-parser";
import { generateSvg, ComponentGenerator, Component, writeComponentsToDisk } from "@axetroy/iconfont-componentized-share";
import { Icon } from "@iconfont-componentized/parser";
import { generateSvg, ComponentGenerator, Component, writeComponentsToDisk } from "@iconfont-componentized/share";
import camelcase from "camelcase";

const header = `// generate by iconfont-componentized`;
Expand Down
File renamed without changes.
File renamed without changes.
55 changes: 55 additions & 0 deletions packages/gen-svg/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
# @iconfont-componentized/gen-svg

## 1.0.10

### Patch Changes

- 2f85a33: bump
- Updated dependencies [2f85a33]
- @iconfont-componentized/parser@1.0.10
- @iconfont-componentized/share@1.0.10

## 1.0.9

### Patch Changes

- b9db6f7: bump
- Updated dependencies [b9db6f7]
- @iconfont-componentized/parser@1.0.9
- @iconfont-componentized/share@1.0.9

## 1.0.8

### Patch Changes

- e0bcc82: update
- Updated dependencies [e0bcc82]
- @iconfont-componentized/parser@1.0.8
- @iconfont-componentized/share@1.0.8

## 1.0.7

### Patch Changes

- 0bc6ec2: bump
- Updated dependencies [0bc6ec2]
- @iconfont-componentized/parser@1.0.7
- @iconfont-componentized/share@1.0.7

## 1.0.6

### Patch Changes

- 82d173a: update version
- Updated dependencies [82d173a]
- @iconfont-componentized/parser@1.0.6
- @iconfont-componentized/share@1.0.6

## 1.0.5

### Patch Changes

- 55fcd0a: update
- Updated dependencies [55fcd0a]
- @iconfont-componentized/parser@1.0.5
- @iconfont-componentized/share@1.0.5
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { parseFromURL } from "@axetroy/iconfont-componentized-parser";
import { parseFromURL } from "@iconfont-componentized/parser";
import SVGComponentGenerator from "../src/index";
import path from "path";

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading

0 comments on commit ecd704c

Please sign in to comment.