Skip to content

Commit

Permalink
Change pages to store builder
Browse files Browse the repository at this point in the history
  • Loading branch information
Bruno Dias committed Dec 28, 2018
1 parent da85ef0 commit 4d76ded
Show file tree
Hide file tree
Showing 4 changed files with 79 additions and 2 deletions.
4 changes: 2 additions & 2 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
},
"builders": {
"react": "2.x",
"pages": "0.x",
"store": "0.x",
"node": "3.x"
},
"scripts": {
Expand Down Expand Up @@ -89,4 +89,4 @@
}
}
}
}
}
10 changes: 10 additions & 0 deletions store/blocks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"my-account": {
"blocks": [],
"inheritComponent": true
},
"my-account-portal": {
"blocks": [],
"inheritComponent": true
}
}
62 changes: 62 additions & 0 deletions store/interfaces.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
{
"my-account": {
"required": [],
"allowed": [],
"component": "index"
},
"my-account.routes": {
"required": [],
"allowed": [],
"component": "vtex.render-runtime/ExtensionContainer"
},
"my-account.menu-links-before": {
"required": [],
"allowed": [],
"component": "vtex.render-runtime/ExtensionContainer"
},
"my-account.menu-links-after": {
"required": [],
"allowed": [],
"component": "vtex.render-runtime/ExtensionContainer"
},
"my-account.profile.display": {
"required": [],
"allowed": [],
"component": "vtex.render-runtime/ExtensionContainer"
},
"my-account.profile.input": {
"required": [],
"allowed": [],
"component": "vtex.render-runtime/ExtensionContainer"
},
"my-account-portal": {
"required": [],
"allowed": [],
"component": "index"
},
"my-account-portal.routes": {
"required": [],
"allowed": [],
"component": "vtex.render-runtime/ExtensionContainer"
},
"my-account-portal.menu-links-before": {
"required": [],
"allowed": [],
"component": "vtex.render-runtime/ExtensionContainer"
},
"my-account-portal.menu-links-after": {
"required": [],
"allowed": [],
"component": "vtex.render-runtime/ExtensionContainer"
},
"my-account-portal.profile.display": {
"required": [],
"allowed": [],
"component": "vtex.render-runtime/ExtensionContainer"
},
"my-account-portal/profile.input": {
"required": [],
"allowed": [],
"component": "vtex.render-runtime/ExtensionContainer"
}
}
5 changes: 5 additions & 0 deletions store/routes.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"my-account-portal": {
"path": "/legacy-extensions/account"
}
}

0 comments on commit 4d76ded

Please sign in to comment.