Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
DCKT authored Feb 17, 2024
0 parents commit 7328c2e
Show file tree
Hide file tree
Showing 10 changed files with 102 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
on:
push:
branches:
- main

jobs:
release:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3
- name: Semantic Release
uses: cycjimmy/semantic-release-action@v4
with:
extra_plugins: |
@semantic-release/changelog
@semantic-release/git
@semantic-release/npm
@semantic-release/github
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
21 changes: 21 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
node_modules/
lib/
package-lock.json
_build
.merlin
.bsb.lock
*.install
esy.lock
scratch/
.vscode/
_opam/
*.coverage
_coverage/
_esy/
.DS_Store
doc/website/build
doc/website/i18n/*
test/bundle/*.js
test/bundle/*.js.gz
promise-*
_release
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
access=public
11 changes: 11 additions & 0 deletions .releaserc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"branches": ["main"],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
]
}
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# rescript-bindings-template
Binary file added bun.lockb
Binary file not shown.
30 changes: 30 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"name": "@dck/rescript-bindings-template",
"version": "0.0.0",
"description": "",
"keywords": [
"rescript",
"bindings"
],
"license": "MIT",
"author": {
"name": "Thomas Deconinck",
"email": "[email protected]",
"url": "https://github.com/DCKT"
},
"peerDependencies": {
"rescript": ">=11.0.0"
},
"devDependencies": {
"rescript": ">=11.0.0"
},
"scripts": {
"build": "rescript build",
"watch": "rescript build -w",
"clean": "rescript clean"
},
"files": [
"src/*",
"rescript.json"
]
}
6 changes: 6 additions & 0 deletions rescript.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"name": "@dck/rescript-bindings-template",
"uncurried": true,
"namespace": false,
"sources": ["src/js"]
}
1 change: 1 addition & 0 deletions src/Bindings.res
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
// change me
8 changes: 8 additions & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1


rescript@>=11.0.0:
version "11.0.0"
resolved "https://registry.yarnpkg.com/rescript/-/rescript-11.0.0.tgz#9a0b6fc998c360543c459aba49b77a572a0306cd"
integrity sha512-uIUwDZZmDUb7ymGkBiiGioxMg8hXh1mze/2k/qhYQcZGgi7PrLHQIW9AksM7gb9WnpjCAvFsA8U2VgC0nA468w==

0 comments on commit 7328c2e

Please sign in to comment.