-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
131043a
commit bf6ba67
Showing
9 changed files
with
114 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
*.*~ | ||
~*.* | ||
* | ||
!.gitignore | ||
!.npmignore | ||
!tsconfig.json | ||
!package.json | ||
!data | ||
!README.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
* | ||
!lib/* | ||
!esm/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
Circum Icons | ||
=== | ||
|
||
[![npm version](https://img.shields.io/npm/v/@icongo/cci.svg)](https://www.npmjs.com/package/@icongo/cci) | ||
![SVG Icons](https://shields.io/badge/SVG-icons-green?logo=svg&style=flat) | ||
![SVG Icons](https://shields.io/badge/TypeScript-Support-green?logo=TypeScript&style=flat) | ||
![React Components](https://shields.io/badge/React-components-green?logo=react&style=flat) | ||
|
||
[Preview Icons](http://icongo.github.io/#/icons/cci) | ||
|
||
```bash | ||
npm i @icongo/cci | ||
``` | ||
|
||
```jsx | ||
import { IconName } from '@icongo/cci'; | ||
import data from '@icongo/cci/data.json'; | ||
import names from '@icongo/cci/names.json'; | ||
``` | ||
|
||
## License | ||
|
||
Licensed under the MIT License. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
"name": "@icongo/cci", | ||
"version": "1.1.2", | ||
"author": "jaywcjlove", | ||
"license": "MIT", | ||
"homepage": "http://icongo.github.io/#/icons/cci", | ||
"main": "./lib/index.js", | ||
"module": "./esm/index.js", | ||
"types": "./lib/index.d.ts", | ||
"sideEffects": false, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/jaywcjlove/icongo.git" | ||
}, | ||
"scripts": { | ||
"cpy": "cpy '../../www/public/icons/cci/*.svg' svg --flat", | ||
"icongo": "icongo --prefix CCI --source svg -o ./src", | ||
"build": "npm run cpy && npm run icongo && tsbb build --no-source-maps", | ||
"start": "npm run build" | ||
}, | ||
"keywords": [ | ||
"icongo", | ||
"cb", | ||
"evil", | ||
"react-icons", | ||
"icons", | ||
"icon" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"extends": "../../tsconfig", | ||
"compilerOptions": { | ||
"target": "es5", | ||
"lib": ["dom", "dom.iterable", "esnext"], | ||
"allowJs": true, | ||
"skipLibCheck": true, | ||
"esModuleInterop": true, | ||
"allowSyntheticDefaultImports": true, | ||
"strict": true, | ||
"forceConsistentCasingInFileNames": true, | ||
"module": "esnext", | ||
"moduleResolution": "node", | ||
"resolveJsonModule": true, | ||
"isolatedModules": true, | ||
"declaration": true, | ||
"baseUrl": ".", | ||
"jsx": "react-jsx", | ||
"noFallthroughCasesInSwitch": true | ||
}, | ||
"include": ["src"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters