File tree 12 files changed +59
-25
lines changed
12 files changed +59
-25
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
+ # v1.1.0 (2022-12-06)
4
+
5
+ ### Features
6
+
7
+ - ** webpack-plugin:** Enable wrapped input/textarea for baidu
8
+ [ \# 165] ( https://github.com/airbnb/goji-js/pull/165 )
9
+
10
+ - ** webpack-plugin:** Refactored the data structure in template and ` setData ` JSON data.
11
+ [ \# 180] ( https://github.com/airbnb/goji-js/pull/180 )
12
+
13
+ - ** webpack-plugin:** Refactor ComponentDesc [ \# 181] ( https://github.com/airbnb/goji-js/pull/181 )
14
+
15
+ - ** webpack-plugin:** Refactor wrapped component with ` meta `
16
+ [ \# 182] ( https://github.com/airbnb/goji-js/pull/182 )
17
+
18
+ - ** core:** Support NodeJS 18 [ \# 184] ( https://github.com/airbnb/goji-js/pull/184 )
19
+
20
+ - ** webpack-plugin:** Refactor template reuse & fix ` getSubtreeId `
21
+ [ \# 186] ( https://github.com/airbnb/goji-js/pull/186 )
22
+
23
+ ### Bugfixes
24
+
25
+ - ** create-goji-app:** Remove default ` libVersion ` fields in ` project.config.json `
26
+ [ \# 164] ( https://github.com/airbnb/goji-js/pull/164 )
27
+
28
+ - ** cli:** Upgrade deps & fix missing linaria issue in create CLI template
29
+ [ \# 175] ( https://github.com/airbnb/goji-js/pull/175 )
30
+
31
+ ### Misc.
32
+
33
+ - ** docs:** Upgrade docs to docusaurus v2 [ \# 166] ( https://github.com/airbnb/goji-js/pull/166 )
34
+
35
+ - ** docs:** Add missing CNAME file for docs [ \# 170] ( https://github.com/airbnb/goji-js/pull/170 )
36
+
3
37
# v1.0.1 (2022-04-13)
4
38
5
39
### Features
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ const config: LernaConfig = {
4
4
packages : [ 'packages/*' , 'packages/goji.js.org/*' ] ,
5
5
npmClient : 'yarn' ,
6
6
useWorkspaces : true ,
7
- version : '1.0.1 ' ,
7
+ version : '1.1.0 ' ,
8
8
} ;
9
9
10
10
export default config ;
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @goji/beemo-dev" ,
3
- "version" : " 1.0.1 " ,
3
+ "version" : " 1.1.0 " ,
4
4
"description" : " Beemo Config for GojiJS Development" ,
5
5
"main" : " src/index.ts" ,
6
6
"repository" : " https://github.com/airbnb/goji-js.git" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @goji/cli" ,
3
- "version" : " 1.0.1 " ,
3
+ "version" : " 1.1.0 " ,
4
4
"description" : " GojiJS CLI" ,
5
5
"main" : " dist/cjs/index.js" ,
6
6
"bin" : {
23
23
"@babel/preset-env" : " ^7.16.5" ,
24
24
"@babel/preset-react" : " ^7.16.5" ,
25
25
"@babel/preset-typescript" : " ^7.16.5" ,
26
- "@goji/webpack-plugin" : " ^1.0.1 " ,
26
+ "@goji/webpack-plugin" : " ^1.1.0 " ,
27
27
"babel-loader" : " ^8.2.1" ,
28
28
"babel-plugin-macros" : " ^3.1.0" ,
29
29
"css-loader" : " ^6.5.1" ,
49
49
"yargs" : " ^17.1.0"
50
50
},
51
51
"devDependencies" : {
52
- "@goji/core" : " ^1.0.1 " ,
52
+ "@goji/core" : " ^1.1.0 " ,
53
53
"@types/yargs" : " ^17.0.2"
54
54
},
55
55
"peerDependencies" : {
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @goji/core" ,
3
- "version" : " 1.0.1 " ,
3
+ "version" : " 1.1.0 " ,
4
4
"description" : " GojiJS Core" ,
5
5
"main" : " dist/cjs/index.js" ,
6
6
"module" : " dist/esm/index.js" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " create-goji-app" ,
3
- "version" : " 1.0.1 " ,
3
+ "version" : " 1.1.0 " ,
4
4
"description" : " Create GojiJS App" ,
5
5
"main" : " index.js" ,
6
6
"repository" : " https://github.com/airbnb/goji-js" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " demo-todomvc-linaria" ,
3
- "version" : " 1.0.1 " ,
3
+ "version" : " 1.1.0 " ,
4
4
"description" : " GojiJS Linaria Example" ,
5
5
"main" : " index.js" ,
6
6
"repository" : " git+https://github.com/airbnb/goji.git" ,
13
13
"build" : " goji build"
14
14
},
15
15
"dependencies" : {
16
- "@goji/core" : " ^1.0.1 " ,
16
+ "@goji/core" : " ^1.1.0 " ,
17
17
"classnames" : " ^2.2.6" ,
18
18
"core-js" : " ^3.16.0" ,
19
19
"linaria" : " ^2.3.0" ,
23
23
"tslib" : " ^2.3.0"
24
24
},
25
25
"devDependencies" : {
26
- "@goji/cli" : " ^1.0.1 " ,
27
- "@goji/testing-library" : " ^1.0.1 " ,
26
+ "@goji/cli" : " ^1.1.0 " ,
27
+ "@goji/testing-library" : " ^1.1.0 " ,
28
28
"@types/classnames" : " ^2.2.10" ,
29
29
"@types/css-modules" : " ^1.0.0" ,
30
30
"@types/react" : " ^17.0.31" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " demo-todomvc" ,
3
- "version" : " 1.0.1 " ,
3
+ "version" : " 1.1.0 " ,
4
4
"description" : " GojiJS TodoMVC Example" ,
5
5
"main" : " index.js" ,
6
6
"repository" : " git+https://github.com/airbnb/goji.git" ,
13
13
"build" : " goji build"
14
14
},
15
15
"dependencies" : {
16
- "@goji/core" : " ^1.0.1 " ,
17
- "@goji/macro" : " ^1.0.1 " ,
16
+ "@goji/core" : " ^1.1.0 " ,
17
+ "@goji/macro" : " ^1.1.0 " ,
18
18
"classnames" : " ^2.2.6" ,
19
19
"core-js" : " ^3.16.0" ,
20
20
"linaria" : " ^2.3.0" ,
24
24
"tslib" : " ^2.3.0"
25
25
},
26
26
"devDependencies" : {
27
- "@goji/beemo-dev" : " ^1.0.1 " ,
28
- "@goji/cli" : " ^1.0.1 " ,
29
- "@goji/testing-library" : " ^1.0.1 " ,
27
+ "@goji/beemo-dev" : " ^1.1.0 " ,
28
+ "@goji/cli" : " ^1.1.0 " ,
29
+ "@goji/testing-library" : " ^1.1.0 " ,
30
30
"@types/classnames" : " ^2.2.10" ,
31
31
"@types/css-modules" : " ^1.0.0" ,
32
32
"@types/react" : " ^17.0.31" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " goji-js-org" ,
3
- "version" : " 1.0.1 " ,
3
+ "version" : " 1.1.0 " ,
4
4
"private" : true ,
5
5
"scripts" : {
6
6
"crowdin" : " crowdin" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @goji/macro" ,
3
- "version" : " 1.0.1 " ,
3
+ "version" : " 1.1.0 " ,
4
4
"description" : " GojiJS binding for babel-plugin-macros" ,
5
5
"main" : " dist/cjs/index.js" ,
6
6
"module" : " dist/esm/index.js" ,
25
25
"tslib" : " ^2.3.0"
26
26
},
27
27
"devDependencies" : {
28
- "@goji/core" : " ^1.0.1 " ,
29
- "@goji/webpack-plugin" : " ^1.0.1 " ,
28
+ "@goji/core" : " ^1.1.0 " ,
29
+ "@goji/webpack-plugin" : " ^1.1.0 " ,
30
30
"@types/babel-plugin-macros" : " ^2.8.5" ,
31
31
"react" : " ^17.0.2"
32
32
},
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @goji/testing-library" ,
3
- "version" : " 1.0.1 " ,
3
+ "version" : " 1.1.0 " ,
4
4
"description" : " GojiJS Testing Library" ,
5
5
"main" : " dist/cjs/index.js" ,
6
6
"scripts" : {
24
24
"react" : " *"
25
25
},
26
26
"devDependencies" : {
27
- "@goji/core" : " ^1.0.1 " ,
27
+ "@goji/core" : " ^1.1.0 " ,
28
28
"@types/lodash" : " ^4.14.172" ,
29
29
"@types/react-test-renderer" : " ^17.0.1" ,
30
30
"react" : " ^17.0.2"
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @goji/webpack-plugin" ,
3
- "version" : " 1.0.1 " ,
3
+ "version" : " 1.1.0 " ,
4
4
"description" : " GojiJS Webpack Plugin" ,
5
5
"main" : " dist/cjs/index.js" ,
6
6
"module" : " dist/esm/index.js" ,
14
14
"prepublishOnly" : " npm run build"
15
15
},
16
16
"devDependencies" : {
17
- "@goji/core" : " ^1.0.1 " ,
17
+ "@goji/core" : " ^1.1.0 " ,
18
18
"@types/common-tags" : " ^1.8.1" ,
19
19
"@types/enhanced-resolve" : " ^3.0.7" ,
20
20
"@types/find-cache-dir" : " ^3.2.1" ,
You can’t perform that action at this time.
0 commit comments