Skip to content

Commit 1fcd667

Browse files
committed
Scaffold: Initialize package
1 parent 8d9087d commit 1fcd667

File tree

4 files changed

+78
-0
lines changed

4 files changed

+78
-0
lines changed

.gitignore

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
*.exe
2+
*.obj
3+
*.out
4+
*.compile
5+
*.native
6+
*.byte
7+
*.cmo
8+
*.annot
9+
*.cmi
10+
*.cmx
11+
*.cmt
12+
*.cmti
13+
*.cma
14+
*.a
15+
*.cmxa
16+
*.obj
17+
*~
18+
*.annot
19+
*.cmj
20+
*.bak
21+
lib/bs
22+
*.mlast
23+
*.mliast
24+
.vscode
25+
.merlin
26+
.bsb.lock
27+
node_modules/

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
# compare
2+
23
ReasonML helpers for generating cmp functions.

bsconfig.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"name": "@reasonableconsulting/compare",
3+
"version": "0.0.0",
4+
"sources": {
5+
"dir" : "src",
6+
"subdirs" : true
7+
},
8+
"package-specs": {
9+
"module": "commonjs",
10+
"in-source": true
11+
},
12+
"suffix": ".bs.js",
13+
"warnings": {
14+
"error" : "+101"
15+
},
16+
"refmt": 3
17+
}

package.json

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"name": "@reasonableconsulting/compare",
3+
"description": "ReasonML helpers for generating cmp functions.",
4+
"version": "0.0.0",
5+
"license": "MPL-2.0",
6+
"repository": "reasonableconsulting/compare",
7+
"author": "Reasonable Consulting <[email protected]> (https://reasonable.consulting)",
8+
"contributors": [
9+
"Blaine Bublitz <[email protected]> (https://github.com/phated)"
10+
],
11+
"main": "src/compare.bs.js",
12+
"files": [
13+
"src/*.bs.js",
14+
"src/*.re",
15+
"bsconfig.json",
16+
"LICENSE"
17+
],
18+
"scripts": {
19+
"clean": "bsb -clean-world",
20+
"build": "bsb -make-world",
21+
"watch": "bsb -make-world -w"
22+
},
23+
"dependencies": {},
24+
"devDependencies": {
25+
"bs-platform": "^4.0.0"
26+
},
27+
"keywords": [
28+
"BuckleScript",
29+
"Reason",
30+
"Comparator",
31+
"Sort"
32+
]
33+
}

0 commit comments

Comments
 (0)