Skip to content

Commit 174a612

Browse files
committed
Initialize project
0 parents  commit 174a612

File tree

6 files changed

+65
-0
lines changed

6 files changed

+65
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/target
2+
/node_modules

Cargo.toml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[package]
2+
name = "figma-rust"
3+
version = "0.1.0"
4+
edition = "2021"
5+
6+
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
7+
8+
[dependencies]

README.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Figma Rust
2+
3+
An exploration of the Figma API and file structure using Rust.
4+
5+
## Initial Project
6+
7+
I will create a command line utility that will take a Figma file and output
8+
design tokens. The output will be interchangeable with the output of the
9+
[design tokens](https://github.com/lukasoppermann/design-tokens) plugin.

package-lock.json

+35
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"scripts": {
3+
"prettier": "prettier --write --prose-wrap=always README.md package.json"
4+
},
5+
"devDependencies": {
6+
"prettier": "^2.8.0"
7+
}
8+
}

src/main.rs

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
fn main() {
2+
println!("Hello, world!");
3+
}

0 commit comments

Comments
 (0)