Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
luarakerlen committed Aug 13, 2024
1 parent 14dd7e1 commit 89ce222
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
"source.fixAll.eslint": "explicit"
},
"eslint.validate": [
"javascript",
Expand Down
14 changes: 6 additions & 8 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,16 @@
{
"vendor": "CHANGE_ME",
"name": "CHANGE_ME",
"version": "0.0.0",
"title": "CHANGE_ME",
"description": "CHANGE_ME",
"vendor": "biggy",
"name": "hello-world",
"version": "0.0.1",
"title": "Teste Luara",
"description": "Teste da Luara",
"builders": {
"react": "3.x",
"messages": "1.x",
"docs": "0.x"
},
"dependencies": {},
"registries": [
"smartcheckout"
],
"registries": ["smartcheckout"],
"policies": [],
"$schema": "https://raw.githubusercontent.com/vtex/node-vtex-api/master/gen/manifest.schema"
}
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"version": "0.0.0",
"name": "CHANGE_ME",
"version": "0.0.1",
"name": "hello-world",
"private": true,
"license": "UNLICENSED",
"scripts": {
Expand Down
5 changes: 5 additions & 0 deletions react/HelloWorld.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import React from 'react'

const HelloWorld = () => <div>Hello, World!</div>

export default HelloWorld
4 changes: 2 additions & 2 deletions react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "CHANGE_ME",
"version": "0.0.0",
"name": "hello-world",
"version": "0.0.1",
"scripts": {
"test": "vtex-test-tools test"
},
Expand Down
5 changes: 5 additions & 0 deletions store/interfaces.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"hello-world": {
"component": "HelloWorld"
}
}

0 comments on commit 89ce222

Please sign in to comment.