Skip to content

Commit 261e1b5

Browse files
committed
v6.0.0-alpha.3
1 parent fe5c117 commit 261e1b5

File tree

9 files changed

+19
-19
lines changed

9 files changed

+19
-19
lines changed

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
"packages": [
44
"packages/*"
55
],
6-
"version": "6.0.0-alpha.2",
6+
"version": "6.0.0-alpha.3",
77
"useWorkspaces": true
88
}

packages/babel-plugin-transform-svg-component/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@svgr/babel-plugin-transform-svg-component",
33
"description": "Transform SVG into component",
4-
"version": "6.0.0-alpha.2",
4+
"version": "6.0.0-alpha.3",
55
"main": "./dist/index.js",
66
"exports": "./dist/index.js",
77
"typings": "./dist/index.d.ts",

packages/babel-preset/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@svgr/babel-preset",
33
"description": "SVGR preset that apply transformations from config",
4-
"version": "6.0.0-alpha.2",
4+
"version": "6.0.0-alpha.3",
55
"main": "./dist/index.js",
66
"exports": "./dist/index.js",
77
"typings": "./dist/index.d.ts",
@@ -31,7 +31,7 @@
3131
"@svgr/babel-plugin-svg-dynamic-title": "^6.0.0-alpha.1",
3232
"@svgr/babel-plugin-svg-em-dimensions": "^6.0.0-alpha.1",
3333
"@svgr/babel-plugin-transform-react-native-svg": "^6.0.0-alpha.1",
34-
"@svgr/babel-plugin-transform-svg-component": "^6.0.0-alpha.2"
34+
"@svgr/babel-plugin-transform-svg-component": "^6.0.0-alpha.3"
3535
},
3636
"peerDependencies": {
3737
"@babel/core": "^7.0.0-0"

packages/cli/package.json

Lines changed: 3 additions & 3 deletions
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.0.0-alpha.2",
4+
"version": "6.0.0-alpha.3",
55
"repository": "https://github.com/gregberge/svgr/tree/master/packages/cli",
66
"author": "Greg Bergé <berge.greg@gmail.com>",
77
"publishConfig": {
@@ -31,8 +31,8 @@
3131
"prepublishOnly": "npm run reset && npm run build"
3232
},
3333
"dependencies": {
34-
"@svgr/core": "^6.0.0-alpha.2",
35-
"@svgr/plugin-jsx": "^6.0.0-alpha.2",
34+
"@svgr/core": "^6.0.0-alpha.3",
35+
"@svgr/plugin-jsx": "^6.0.0-alpha.3",
3636
"@svgr/plugin-prettier": "^6.0.0-alpha.1",
3737
"@svgr/plugin-svgo": "^6.0.0-alpha.1",
3838
"camelcase": "^6.2.0",

packages/core/package.json

Lines changed: 2 additions & 2 deletions
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.0.0-alpha.2",
4+
"version": "6.0.0-alpha.3",
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.0.0-alpha.2",
36+
"@svgr/plugin-jsx": "^6.0.0-alpha.3",
3737
"camelcase": "^6.2.0",
3838
"cosmiconfig": "^7.0.1"
3939
},

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

Lines changed: 1 addition & 1 deletion
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-alpha.1",
4+
"version": "6.0.0-alpha.3",
55
"main": "./dist/index.js",
66
"exports": "./dist/index.js",
77
"typings": "./dist/index.d.ts",

packages/plugin-jsx/package.json

Lines changed: 3 additions & 3 deletions
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.0.0-alpha.2",
4+
"version": "6.0.0-alpha.3",
55
"main": "./dist/index.js",
66
"exports": "./dist/index.js",
77
"typings": "./dist/index.d.ts",
@@ -32,8 +32,8 @@
3232
},
3333
"dependencies": {
3434
"@babel/core": "^7.15.5",
35-
"@svgr/babel-preset": "^6.0.0-alpha.2",
36-
"@svgr/hast-util-to-babel-ast": "^6.0.0-alpha.1",
35+
"@svgr/babel-preset": "^6.0.0-alpha.3",
36+
"@svgr/hast-util-to-babel-ast": "^6.0.0-alpha.3",
3737
"svg-parser": "^2.0.2"
3838
}
3939
}

packages/rollup/package.json

Lines changed: 3 additions & 3 deletions
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.0.0-alpha.2",
4+
"version": "6.0.0-alpha.3",
55
"main": "./dist/index.js",
66
"exports": "./dist/index.js",
77
"typings": "./dist/index.d.ts",
@@ -36,8 +36,8 @@
3636
"@babel/plugin-transform-react-constant-elements": "^7.14.5",
3737
"@babel/preset-env": "^7.15.6",
3838
"@babel/preset-react": "^7.14.5",
39-
"@svgr/core": "^6.0.0-alpha.2",
40-
"@svgr/plugin-jsx": "^6.0.0-alpha.2",
39+
"@svgr/core": "^6.0.0-alpha.3",
40+
"@svgr/plugin-jsx": "^6.0.0-alpha.3",
4141
"@svgr/plugin-svgo": "^6.0.0-alpha.1",
4242
"rollup-pluginutils": "^2.8.2"
4343
},

packages/webpack/package.json

Lines changed: 3 additions & 3 deletions
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.0.0-alpha.2",
4+
"version": "6.0.0-alpha.3",
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.0.0-alpha.2",
41-
"@svgr/plugin-jsx": "^6.0.0-alpha.2",
40+
"@svgr/core": "^6.0.0-alpha.3",
41+
"@svgr/plugin-jsx": "^6.0.0-alpha.3",
4242
"@svgr/plugin-svgo": "^6.0.0-alpha.1",
4343
"loader-utils": "^2.0.0"
4444
},

0 commit comments

Comments
 (0)