Skip to content

Commit 7328c2e

Browse files
authored
Initial commit
0 parents  commit 7328c2e

File tree

10 files changed

+102
-0
lines changed

10 files changed

+102
-0
lines changed

.github/workflows/release.yaml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
on:
2+
push:
3+
branches:
4+
- main
5+
6+
jobs:
7+
release:
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- name: Checkout
12+
uses: actions/checkout@v3
13+
- name: Semantic Release
14+
uses: cycjimmy/semantic-release-action@v4
15+
with:
16+
extra_plugins: |
17+
@semantic-release/changelog
18+
@semantic-release/git
19+
@semantic-release/npm
20+
@semantic-release/github
21+
env:
22+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
23+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

.gitignore

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
node_modules/
2+
lib/
3+
package-lock.json
4+
_build
5+
.merlin
6+
.bsb.lock
7+
*.install
8+
esy.lock
9+
scratch/
10+
.vscode/
11+
_opam/
12+
*.coverage
13+
_coverage/
14+
_esy/
15+
.DS_Store
16+
doc/website/build
17+
doc/website/i18n/*
18+
test/bundle/*.js
19+
test/bundle/*.js.gz
20+
promise-*
21+
_release

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
access=public

.releaserc.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"branches": ["main"],
3+
"plugins": [
4+
"@semantic-release/commit-analyzer",
5+
"@semantic-release/release-notes-generator",
6+
"@semantic-release/changelog",
7+
"@semantic-release/npm",
8+
"@semantic-release/git",
9+
"@semantic-release/github"
10+
]
11+
}

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# rescript-bindings-template

bun.lockb

1.37 KB
Binary file not shown.

package.json

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"name": "@dck/rescript-bindings-template",
3+
"version": "0.0.0",
4+
"description": "",
5+
"keywords": [
6+
"rescript",
7+
"bindings"
8+
],
9+
"license": "MIT",
10+
"author": {
11+
"name": "Thomas Deconinck",
12+
"email": "[email protected]",
13+
"url": "https://github.com/DCKT"
14+
},
15+
"peerDependencies": {
16+
"rescript": ">=11.0.0"
17+
},
18+
"devDependencies": {
19+
"rescript": ">=11.0.0"
20+
},
21+
"scripts": {
22+
"build": "rescript build",
23+
"watch": "rescript build -w",
24+
"clean": "rescript clean"
25+
},
26+
"files": [
27+
"src/*",
28+
"rescript.json"
29+
]
30+
}

rescript.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"name": "@dck/rescript-bindings-template",
3+
"uncurried": true,
4+
"namespace": false,
5+
"sources": ["src/js"]
6+
}

src/Bindings.res

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
// change me

yarn.lock

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2+
# yarn lockfile v1
3+
4+
5+
rescript@>=11.0.0:
6+
version "11.0.0"
7+
resolved "https://registry.yarnpkg.com/rescript/-/rescript-11.0.0.tgz#9a0b6fc998c360543c459aba49b77a572a0306cd"
8+
integrity sha512-uIUwDZZmDUb7ymGkBiiGioxMg8hXh1mze/2k/qhYQcZGgi7PrLHQIW9AksM7gb9WnpjCAvFsA8U2VgC0nA468w==

0 commit comments

Comments
 (0)