Skip to content

Commit

Permalink
Merge pull request #102 from ice-lab/fix/loss-of-dependencies
Browse files Browse the repository at this point in the history
Fix/loss-of-dependencies
  • Loading branch information
ChrisCindy authored Jun 13, 2023
2 parents ffb0068 + ef4c25a commit 984f002
Show file tree
Hide file tree
Showing 12 changed files with 16 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ es2017/

# misc
.idea/
.happypack
.DS_Store
*.swp
*.dia~
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ es2017/

# misc
.idea/
.happypack
.DS_Store
*.swp
*.dia~
Expand Down
4 changes: 4 additions & 0 deletions packages/template-pkg-node/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 1.0.12

- [fix] loss of dependencies(react & react-dom)

## 1.0.11

- [chore] upgrade `@swc/helpers` version to `^0.5.1`
Expand Down
2 changes: 1 addition & 1 deletion packages/template-pkg-node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ice/template-pkg-node",
"version": "1.0.11",
"version": "1.0.12",
"files": [
"template"
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
node_modules/

# production
.docusaurus/
tmp/
cjs/
esm/
es2017/

# misc
.idea/
.happypack
.DS_Store
*.swp
*.dia~
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@
<% if (!locals.workspace) { _%>
"@ice/pkg-plugin-docusaurus": "^1.0.0",
<% } _%>
"react": "^18.2.0",
"react-dom": "^18.2.0",
"eslint": "^8.0.0"
},
"publishConfig": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ es2017/

# misc
.idea/
.happypack
.DS_Store
*.swp
*.dia~
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ es2017/

# misc
.idea/
.happypack
.DS_Store
*.swp
*.dia~
Expand Down
4 changes: 4 additions & 0 deletions packages/template-pkg-web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 1.0.13

- [fix] loss of dependencies(react & react-dom)

## 1.0.12

- [chore] upgrade `@swc/helpers` version to `^0.5.1`
Expand Down
2 changes: 1 addition & 1 deletion packages/template-pkg-web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ice/template-pkg-web",
"version": "1.0.12",
"version": "1.0.13",
"files": [
"template"
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
node_modules/

# production
.docusaurus/
dist/
tmp/
cjs/
Expand All @@ -12,7 +13,6 @@ es2017/

# misc
.idea/
.happypack
.DS_Store
*.swp
*.dia~
Expand Down
2 changes: 2 additions & 0 deletions packages/template-pkg-web/template/component/package.json.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@
<% if (!locals.workspace) { _%>
"@ice/pkg-plugin-docusaurus": "^1.0.0",
<% } _%>
"react": "^18.2.0",
"react-dom": "^18.2.0",
"eslint": "^8.0.0",
"stylelint": "^15.0.0"
},
Expand Down

0 comments on commit 984f002

Please sign in to comment.