Skip to content

Commit

Permalink
init commit
Browse files Browse the repository at this point in the history
  • Loading branch information
vjandrei committed Nov 12, 2019
1 parent fd6e6c3 commit 2a806d8
Show file tree
Hide file tree
Showing 28 changed files with 27,547 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .appcast.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<rss xmlns:sparkle="http://www.andymatuschak.org/xml-namespaces/sparkle" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0">
<channel>
<item>
<enclosure url="https://github.com/vjandrei/Design-Tokens" sparkle:version="0.0.1"/>
</item>
</channel>
</rss>
4 changes: 4 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"presets": ["@skpm/babel-preset"],
"plugins": ["@babel/plugin-transform-runtime"]
}
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# build artifacts
# design-tokens.sketchplugin

# npm
node_modules
.npm
npm-debug.log

# mac
.DS_Store
1 change: 1 addition & 0 deletions .skpmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
sketchPath: '/Applications/SketchBeta.app'
Binary file added assets/icon_128x128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
26 changes: 26 additions & 0 deletions desing-tokens.sketchplugin/Contents/Sketch/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"name": "Desing tokens",
"description": "Sketch plugin exports desing tokens to JSON format.",
"author": "Andreas Koutsoukos",
"version": "1.0",
"compatibleVersion": "56",
"bundleVersion": 1,
"icon": "icon_128x128.png",
"commands": [
{
"name": "Design tokens export",
"identifier": "design-tokens-export",
"shortcut": "ctrl shift r",
"script": "plugin.js"
}
],
"menu": {
"isRoot": true,
"items": [
"design-tokens-export"
]
},
"identifier": "Design Tokens",
"disableCocoaScriptPreprocessor": true,
"appcast": "https://raw.githubusercontent.com/vjandrei/Design-Tokens/master/.appcast.xml"
}
Loading

0 comments on commit 2a806d8

Please sign in to comment.