-
Notifications
You must be signed in to change notification settings - Fork 0
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
003957c
commit 10db32d
Showing
2 changed files
with
83 additions
and
58 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Changelog | ||
|
||
|
||
## v0.0.2 | ||
|
||
|
||
### 🚀 Enhancements | ||
|
||
- Support linear-gradient and radial-gradient ([83353c7](https://github.com/Jackie1210/css-gradient-parser/commit/83353c7)) | ||
|
||
### 🏡 Chore | ||
|
||
- Update ci ([1f705dd](https://github.com/Jackie1210/css-gradient-parser/commit/1f705dd)) | ||
- Update ci ([cb93b38](https://github.com/Jackie1210/css-gradient-parser/commit/cb93b38)) | ||
- Release v0.1.0 ([7541aa4](https://github.com/Jackie1210/css-gradient-parser/commit/7541aa4)) | ||
- Update workflow ([003957c](https://github.com/Jackie1210/css-gradient-parser/commit/003957c)) | ||
|
||
### 🤖 CI | ||
|
||
- Add ci ([b7315cb](https://github.com/Jackie1210/css-gradient-parser/commit/b7315cb)) | ||
|
||
### ❤️ Contributors | ||
|
||
- Lynn <[email protected]> | ||
|
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 |
---|---|---|
@@ -1,59 +1,59 @@ | ||
{ | ||
"name": "css-gradient-parser", | ||
"version": "0.0.1", | ||
"description": "a css gradient parser", | ||
"packageManager": "[email protected]", | ||
"license": "MIT", | ||
"main": "dist/index.js", | ||
"module": "dist/index.mjs", | ||
"types": "dist/index.d.mts", | ||
"files": [ | ||
"dist" | ||
], | ||
"author": "Lynnnnnnxx<[email protected]>", | ||
"scripts": { | ||
"prepare": "simple-git-hooks", | ||
"build": "tsup", | ||
"test": "vitest", | ||
"lint": "eslint . --ext .js,.jsx,.ts --quiet --cache", | ||
"lint:fix": "pnpm lint --fix", | ||
"r": "pnpm build && changelogen --release --push && pnpm publish" | ||
}, | ||
"exports": { | ||
".": { | ||
"import": { | ||
"default": "./dist/index.mjs", | ||
"types": "./dist/index.d.mts" | ||
}, | ||
"require": { | ||
"default": "./dist/index.js", | ||
"types": "./dist/index.d.ts" | ||
} | ||
} | ||
}, | ||
"simple-git-hooks": { | ||
"pre-commit": "pnpm exec lint-staged" | ||
}, | ||
"lint-staged": { | ||
"*.{ts,tsx}": [ | ||
"eslint --fix --cache" | ||
] | ||
}, | ||
"devDependencies": { | ||
"@types/node": "^20.8.0", | ||
"@typescript-eslint/eslint-plugin": "^6.7.3", | ||
"@typescript-eslint/parser": "^6.7.3", | ||
"@vitest/coverage-v8": "^0.34.6", | ||
"changelogen": "^0.5.5", | ||
"eslint": "^8.50.0", | ||
"lint-staged": "^14.0.1", | ||
"simple-git-hooks": "^2.9.0", | ||
"tsup": "^7.2.0", | ||
"tsx": "^3.13.0", | ||
"typescript": "^5.2.2", | ||
"vitest": "^0.34.6" | ||
}, | ||
"engines": { | ||
"node": ">=16" | ||
} | ||
} | ||
"name": "css-gradient-parser", | ||
"version": "0.0.2", | ||
"description": "a css gradient parser", | ||
"packageManager": "[email protected]", | ||
"license": "MIT", | ||
"main": "dist/index.js", | ||
"module": "dist/index.mjs", | ||
"types": "dist/index.d.mts", | ||
"files": [ | ||
"dist" | ||
], | ||
"author": "Lynnnnnnxx<[email protected]>", | ||
"scripts": { | ||
"prepare": "simple-git-hooks", | ||
"build": "tsup", | ||
"test": "vitest", | ||
"lint": "eslint . --ext .js,.jsx,.ts --quiet --cache", | ||
"lint:fix": "pnpm lint --fix", | ||
"r": "pnpm build && changelogen --release --push && pnpm publish" | ||
}, | ||
"exports": { | ||
".": { | ||
"import": { | ||
"default": "./dist/index.mjs", | ||
"types": "./dist/index.d.mts" | ||
}, | ||
"require": { | ||
"default": "./dist/index.js", | ||
"types": "./dist/index.d.ts" | ||
} | ||
} | ||
}, | ||
"simple-git-hooks": { | ||
"pre-commit": "pnpm exec lint-staged" | ||
}, | ||
"lint-staged": { | ||
"*.{ts,tsx}": [ | ||
"eslint --fix --cache" | ||
] | ||
}, | ||
"devDependencies": { | ||
"@types/node": "^20.8.0", | ||
"@typescript-eslint/eslint-plugin": "^6.7.3", | ||
"@typescript-eslint/parser": "^6.7.3", | ||
"@vitest/coverage-v8": "^0.34.6", | ||
"changelogen": "^0.5.5", | ||
"eslint": "^8.50.0", | ||
"lint-staged": "^14.0.1", | ||
"simple-git-hooks": "^2.9.0", | ||
"tsup": "^7.2.0", | ||
"tsx": "^3.13.0", | ||
"typescript": "^5.2.2", | ||
"vitest": "^0.34.6" | ||
}, | ||
"engines": { | ||
"node": ">=16" | ||
} | ||
} |