Skip to content
This repository was archived by the owner on Oct 23, 2024. It is now read-only.

Commit 7cfa5a3

Browse files
committed
Initial commit
0 parents  commit 7cfa5a3

File tree

220 files changed

+44608
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

220 files changed

+44608
-0
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.DS_Store
2+
/node_modules/
3+
**/lib/
4+
.bsb.lock
5+
.merlin

LICENSE

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
Copyright (C) 2017- Hongbo Zhang, Authors of ReScript
2+
3+
This program is free software: you can redistribute it and/or modify
4+
it under the terms of the GNU Lesser General Public License as published by
5+
the Free Software Foundation, either version 3 of the License, or
6+
(at your option) any later version.
7+
8+
In addition to the permissions granted to you by the LGPL, you may combine
9+
or link a "work that uses the Library" with a publicly distributed version
10+
of this file to produce a combined library or application, then distribute
11+
that combined work under the terms of your choosing, with no requirement
12+
to comply with the obligations normally placed on you by section 4 of the
13+
LGPL version 3 (or the corresponding section of a later version of the LGPL
14+
should you choose to use a later version).
15+
16+
This program is distributed in the hope that it will be useful,
17+
but WITHOUT ANY WARRANTY; without even the implied warranty of
18+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19+
GNU Lesser General Public License for more details.
20+
21+
You should have received a copy of the GNU Lesser General Public License
22+
along with this program; if not, write to the Free Software
23+
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Experiment: Monorepo for ReScript standard libraries
2+
3+
See https://github.com/rescript-lang/rescript-compiler/issues/6826.

belt/package.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"name": "belt",
3+
"version": "0.0.0"
4+
}

belt/rescript.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"name": "belt",
3+
"sources": {
4+
"dir": "src",
5+
"subdirs": true
6+
},
7+
"bs-dependencies": ["stdlib-mini"],
8+
"bsc-flags": ["-nostdlib", "-nopervasives", "-open Stdlib_mini"]
9+
}

belt/src/belt.js

Lines changed: 57 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)