Skip to content

Commit

Permalink
First commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathasbsouza committed Jun 5, 2019
1 parent f8d5721 commit 34cba2c
Show file tree
Hide file tree
Showing 9 changed files with 252 additions and 17 deletions.
11 changes: 0 additions & 11 deletions .appcast.xml

This file was deleted.

3 changes: 0 additions & 3 deletions .gitignore
@@ -1,6 +1,3 @@
# build artefacts
*.sketchplugin

# npm
node_modules
.npm
Expand Down
Binary file added brdata.sketchplugin/Contents/Resources/icon.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions brdata.sketchplugin/Contents/Resources/icon2.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
33 changes: 33 additions & 0 deletions brdata.sketchplugin/Contents/Sketch/manifest.json
@@ -0,0 +1,33 @@
{
"compatibleVersion": 3,
"bundleVersion": 1,
"icon": "icon.png",
"suppliesData": true,
"commands": [
{
"script": "my-command.js",
"handlers": {
"actions": {
"Startup": "onStartup",
"Shutdown": "onShutdown",
"GenerateNameSurname": "onGenerateNameSurname",
"GenerateName": "onGenerateName",
"GenerateSurname": "onGenerateSurname",
"GenerateState": "onGenerateState",
"GenerateCity": "onGenerateCity"
}
}
}
],
"menu": {
"title": "BRData"
},
"version": "0.1.0",
"description": "Gerador de dados contextualizados com a realidade brasileira.",
"name": "BRData",
"identifier": "BRData",
"disableCocoaScriptPreprocessor": true,
"appcast": "https://raw.githubusercontent.com//master/.appcast.xml",
"author": "Jônathas Souza",
"authorEmail": "jonathasbsouza@gmail.com"
}
214 changes: 214 additions & 0 deletions brdata.sketchplugin/Contents/Sketch/my-command.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions brdata.sketchplugin/Contents/Sketch/my-command.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
@@ -1,13 +1,13 @@
{
"name": "brdata",
"version": "2.0.0",
"version": "0.0.1",
"description": "Gerador de dados contextualizados com a realidade brasileira.",
"engines": {
"sketch": ">=3.0"
},
"repository": {
"type": "git",
"url": "git@github.com:jonathasbsouza/brdata.git"
"url": "https://github.com/jonathasbsouza/brdata.git"
},
"skpm": {
"name": "BRData",
Expand Down

0 comments on commit 34cba2c

Please sign in to comment.