Skip to content

Commit 6158fe7

Browse files
committed
v6.2.1
1 parent b030065 commit 6158fe7

File tree

14 files changed

+81
-15
lines changed

14 files changed

+81
-15
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [6.2.1](https://github.com/gregberge/svgr/compare/v6.2.0...v6.2.1) (2022-01-30)
7+
8+
9+
### Bug Fixes
10+
11+
* do not transform mask-type ([#673](https://github.com/gregberge/svgr/issues/673)) ([6e58f2c](https://github.com/gregberge/svgr/commit/6e58f2cb456bf5fbfa011ab8f8154333c0724e34)), closes [#643](https://github.com/gregberge/svgr/issues/643)
12+
* use .ts extension for generated index ([#670](https://github.com/gregberge/svgr/issues/670)) ([d19abe2](https://github.com/gregberge/svgr/commit/d19abe207013f4e880a78f236e9f75b0151258da)), closes [#462](https://github.com/gregberge/svgr/issues/462)
13+
14+
15+
16+
17+
618
# [6.2.0](https://github.com/gregberge/svgr/compare/v6.1.2...v6.2.0) (2022-01-10)
719

820

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
"packages": [
44
"packages/*"
55
],
6-
"version": "6.2.0",
6+
"version": "6.2.1",
77
"useWorkspaces": true
88
}

packages/cli/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [6.2.1](https://github.com/gregberge/svgr/compare/v6.2.0...v6.2.1) (2022-01-30)
7+
8+
9+
### Bug Fixes
10+
11+
* use .ts extension for generated index ([#670](https://github.com/gregberge/svgr/issues/670)) ([d19abe2](https://github.com/gregberge/svgr/commit/d19abe207013f4e880a78f236e9f75b0151258da)), closes [#462](https://github.com/gregberge/svgr/issues/462)
12+
13+
14+
15+
16+
617
# [6.2.0](https://github.com/gregberge/svgr/compare/v6.1.2...v6.2.0) (2022-01-10)
718

819

packages/cli/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@svgr/cli",
33
"description": "SVGR command line.",
4-
"version": "6.2.0",
4+
"version": "6.2.1",
55
"repository": "https://github.com/gregberge/svgr/tree/master/packages/cli",
66
"author": "Greg Bergé <[email protected]>",
77
"publishConfig": {
@@ -31,8 +31,8 @@
3131
"prepublishOnly": "npm run reset && npm run build"
3232
},
3333
"dependencies": {
34-
"@svgr/core": "^6.2.0",
35-
"@svgr/plugin-jsx": "^6.2.0",
34+
"@svgr/core": "^6.2.1",
35+
"@svgr/plugin-jsx": "^6.2.1",
3636
"@svgr/plugin-prettier": "^6.1.2",
3737
"@svgr/plugin-svgo": "^6.2.0",
3838
"camelcase": "^6.2.0",

packages/core/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [6.2.1](https://github.com/gregberge/svgr/compare/v6.2.0...v6.2.1) (2022-01-30)
7+
8+
**Note:** Version bump only for package @svgr/core
9+
10+
11+
12+
13+
614
# [6.2.0](https://github.com/gregberge/svgr/compare/v6.1.2...v6.2.0) (2022-01-10)
715

816
**Note:** Version bump only for package @svgr/core

packages/core/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@svgr/core",
33
"description": "Transform SVG into React Components.",
4-
"version": "6.2.0",
4+
"version": "6.2.1",
55
"main": "./dist/index.js",
66
"exports": "./dist/index.js",
77
"typings": "./dist/index.d.ts",
@@ -33,7 +33,7 @@
3333
"prepublishOnly": "npm run reset && npm run build"
3434
},
3535
"dependencies": {
36-
"@svgr/plugin-jsx": "^6.2.0",
36+
"@svgr/plugin-jsx": "^6.2.1",
3737
"camelcase": "^6.2.0",
3838
"cosmiconfig": "^7.0.1"
3939
},

packages/hast-util-to-babel-ast/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [6.2.1](https://github.com/gregberge/svgr/compare/v6.2.0...v6.2.1) (2022-01-30)
7+
8+
9+
### Bug Fixes
10+
11+
* do not transform mask-type ([#673](https://github.com/gregberge/svgr/issues/673)) ([6e58f2c](https://github.com/gregberge/svgr/commit/6e58f2cb456bf5fbfa011ab8f8154333c0724e34)), closes [#643](https://github.com/gregberge/svgr/issues/643)
12+
13+
14+
15+
16+
617
# [5.5.0](https://github.com/gregberge/svgr/tree/master/packages/hast-util-to-babel-ast/compare/v5.4.0...v5.5.0) (2020-11-15)
718

819
**Note:** Version bump only for package @svgr/hast-util-to-babel-ast

packages/hast-util-to-babel-ast/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@svgr/hast-util-to-babel-ast",
33
"description": "Transform HAST to Babel AST (JSX)",
4-
"version": "6.0.0",
4+
"version": "6.2.1",
55
"main": "./dist/index.js",
66
"exports": "./dist/index.js",
77
"typings": "./dist/index.d.ts",

packages/plugin-jsx/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [6.2.1](https://github.com/gregberge/svgr/compare/v6.2.0...v6.2.1) (2022-01-30)
7+
8+
**Note:** Version bump only for package @svgr/plugin-jsx
9+
10+
11+
12+
13+
614
# [6.2.0](https://github.com/gregberge/svgr/compare/v6.1.2...v6.2.0) (2022-01-10)
715

816
**Note:** Version bump only for package @svgr/plugin-jsx

packages/plugin-jsx/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@svgr/plugin-jsx",
33
"description": "Transform SVG into JSX",
4-
"version": "6.2.0",
4+
"version": "6.2.1",
55
"main": "./dist/index.js",
66
"exports": "./dist/index.js",
77
"typings": "./dist/index.d.ts",
@@ -33,7 +33,7 @@
3333
"dependencies": {
3434
"@babel/core": "^7.15.5",
3535
"@svgr/babel-preset": "^6.2.0",
36-
"@svgr/hast-util-to-babel-ast": "^6.0.0",
36+
"@svgr/hast-util-to-babel-ast": "^6.2.1",
3737
"svg-parser": "^2.0.2"
3838
}
3939
}

packages/rollup/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [6.2.1](https://github.com/gregberge/svgr/compare/v6.2.0...v6.2.1) (2022-01-30)
7+
8+
**Note:** Version bump only for package @svgr/rollup
9+
10+
11+
12+
13+
614
# [6.2.0](https://github.com/gregberge/svgr/compare/v6.1.2...v6.2.0) (2022-01-10)
715

816
**Note:** Version bump only for package @svgr/rollup

packages/rollup/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@svgr/rollup",
33
"description": "SVGR Rollup plugin.",
4-
"version": "6.2.0",
4+
"version": "6.2.1",
55
"main": "./dist/index.js",
66
"exports": "./dist/index.js",
77
"typings": "./dist/index.d.ts",
@@ -37,8 +37,8 @@
3737
"@babel/preset-env": "^7.15.6",
3838
"@babel/preset-react": "^7.14.5",
3939
"@babel/preset-typescript": "^7.16.0",
40-
"@svgr/core": "^6.2.0",
41-
"@svgr/plugin-jsx": "^6.2.0",
40+
"@svgr/core": "^6.2.1",
41+
"@svgr/plugin-jsx": "^6.2.1",
4242
"@svgr/plugin-svgo": "^6.2.0",
4343
"rollup-pluginutils": "^2.8.2"
4444
},

packages/webpack/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [6.2.1](https://github.com/gregberge/svgr/compare/v6.2.0...v6.2.1) (2022-01-30)
7+
8+
**Note:** Version bump only for package @svgr/webpack
9+
10+
11+
12+
13+
614
# [6.2.0](https://github.com/gregberge/svgr/compare/v6.1.2...v6.2.0) (2022-01-10)
715

816
**Note:** Version bump only for package @svgr/webpack

packages/webpack/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@svgr/webpack",
33
"description": "SVGR webpack loader.",
4-
"version": "6.2.0",
4+
"version": "6.2.1",
55
"main": "./dist/index.js",
66
"exports": "./dist/index.js",
77
"typings": "./dist/index.d.ts",
@@ -37,8 +37,8 @@
3737
"@babel/preset-env": "^7.15.6",
3838
"@babel/preset-react": "^7.14.5",
3939
"@babel/preset-typescript": "^7.15.0",
40-
"@svgr/core": "^6.2.0",
41-
"@svgr/plugin-jsx": "^6.2.0",
40+
"@svgr/core": "^6.2.1",
41+
"@svgr/plugin-jsx": "^6.2.1",
4242
"@svgr/plugin-svgo": "^6.2.0"
4343
},
4444
"devDependencies": {

0 commit comments

Comments
 (0)