Skip to content

Commit f0e97de

Browse files
committed
first commit
1 parent 3659c88 commit f0e97de

11 files changed

+6960
-14
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
11
/target
2+
/node_modules
3+
/lib
4+
.bsb.lock

.merlin

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
####{BSB GENERATED: NO EDIT
2+
FLG -ppx '/Users/celsobonuttifilho/work/rescript-react-feather/node_modules/rescript/darwin/bsc.exe -as-ppx -bs-jsx 3'
3+
S /Users/celsobonuttifilho/work/rescript-react-feather/node_modules/rescript/lib/ocaml
4+
B /Users/celsobonuttifilho/work/rescript-react-feather/node_modules/rescript/lib/ocaml
5+
FLG -w +a-4-9-20-40-41-42-50-61-102
6+
S /Users/celsobonuttifilho/work/rescript-react-feather/node_modules/@rescript/react/lib/ocaml
7+
B /Users/celsobonuttifilho/work/rescript-react-feather/node_modules/@rescript/react/lib/ocaml
8+
S src
9+
B lib/bs/src
10+
####BSB GENERATED: NO EDIT}

.npmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@heliaxdev:registry=https://npm.pkg.github.com

Cargo.lock

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

Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ edition = "2018"
66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
77

88
[dependencies]
9+
pom = "3.2.0"

bsconfig.json

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"name": "rescript-react-feather",
3+
"reason": { "react-jsx": 3 },
4+
"sources": [
5+
{
6+
"dir": "src",
7+
"subdirs": true
8+
}
9+
],
10+
"package-specs": [
11+
{
12+
"module": "es6",
13+
"in-source": true
14+
}
15+
],
16+
"bs-dependencies": [
17+
"@rescript/react"
18+
],
19+
"suffix": ".bs.js"
20+
}

package.json

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "@heliaxdev/rescript-react-feather",
3+
"version": "1.0.0",
4+
"description": "ReScript bindings for the react-feather library",
5+
"keywords": ["rescript", "react", "react-feather"],
6+
"main": "index.js",
7+
"repository": "git://github.com/heliaxdev/rescript-react-feather.git",
8+
"author": "Heliax AG",
9+
"license": "MIT",
10+
"private": true,
11+
"scripts": {
12+
"build": "cargo run && rescript format -all && rescript"
13+
},
14+
"dependencies": {
15+
"@rescript/react": "^0.10.3",
16+
"react": "^17.0.2",
17+
"react-dom": "^17.0.2",
18+
"react-feather": "^2.0.9"
19+
},
20+
"devDependencies": {
21+
"rescript": "^9.1.4"
22+
}
23+
}

0 commit comments

Comments
 (0)