This repository has been archived by the owner on Jul 16, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
83 changed files
with
579 additions
and
7,449 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
FROM gitpod/workspace-full | ||
|
||
RUN curl -fsSL https://bun.sh/install | bash | ||
RUN echo 'export BUN_INSTALL="/home/gitpod/.bun"' >> /home/gitpod/.bashrc.d/600-bun | bash && \ | ||
echo 'export PATH="$BUN_INSTALL/bin:$PATH"' >> /home/gitpod/.bashrc.d/600-bun | bash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,9 +31,9 @@ We welcome contributions via pull requests! Here are some guidelines to help you | |
|
||
1. Fork the repository and clone it to your local machine. | ||
2. Create a new branch for your changes: `git checkout -b my-new-feature` | ||
3. Install dependencies: `pnpm install` (`[email protected]`) | ||
3. Install dependencies: `bun install` | ||
4. Make your changes and add tests if applicable. | ||
5. Run the tests: `pnpm test` | ||
5. Run the tests: `bu test` | ||
6. Commit your changes: `git commit -am 'Add some feature'` | ||
7. Push your changes to your fork: `git push origin my-new-feature` | ||
8. Open a pull request against our `main` branch. | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,25 +27,22 @@ | |
"functional-programming" | ||
], | ||
"scripts": { | ||
"example": "ts-node --project tsconfig.examples.json", | ||
"version": "changeset version && pnpm install --no-frozen-lockfile && pnpm run docs-update", | ||
"release": "pnpm run build && changeset publish", | ||
"version": "changeset version && bun install && bun run docs-update", | ||
"release": "bun run build && changeset publish", | ||
"clean": "rimraf build tsbuildinfo dist .cache", | ||
"build": "pnpm build-all && pnpm build-pack", | ||
"build": "bun build-all && bun build-pack", | ||
"build-cjs": "babel build/esm --config-file ./.babel.cjs.json --out-dir build/cjs --out-file-extension .js --source-maps", | ||
"build-mjs": "babel build/esm --config-file ./.babel.mjs.json --out-dir build/mjs --out-file-extension .mjs --source-maps", | ||
"build-post": "build-utils pack-v1", | ||
"build-pack": "concurrently \"pnpm build-cjs\" \"pnpm build-mjs\" && pnpm build-post", | ||
"build-pack": "concurrently \"bun build-cjs\" \"bun build-mjs\" && bun build-post", | ||
"build-all": "tsc -b tsconfig.json", | ||
"build-watch": "tsc -b tsconfig.json --watch", | ||
"lint": "eslint src test examples", | ||
"autofix": "pnpm lint --fix", | ||
"autofix": "bun lint --fix", | ||
"tc": "tsc --noEmit", | ||
"docs": "docgen", | ||
"docs-update": "git add --force --all docs/modules || true", | ||
"circular": "madge --ts-config ./tsconfig.madge.json --circular --no-color --no-spinner --warning build/esm", | ||
"test": "vitest", | ||
"coverage": "vitest run --coverage", | ||
"dtslint": "dtslint --expectOnly dtslint" | ||
}, | ||
"exports": { | ||
|
@@ -56,7 +53,6 @@ | |
"require": "./build/cjs/*.js" | ||
} | ||
}, | ||
"packageManager": "[email protected]", | ||
"devDependencies": { | ||
"@babel/cli": "^7.22.10", | ||
"@babel/core": "^7.22.11", | ||
|
@@ -75,8 +71,9 @@ | |
"@typescript-eslint/eslint-plugin": "^6.5.0", | ||
"@typescript-eslint/parser": "^6.5.0", | ||
"@vitejs/plugin-react": "^4.0.4", | ||
"@vitest/coverage-v8": "^0.34.3", | ||
"babel-plugin-annotate-pure-calls": "^0.4.0", | ||
"bun": "^1.0.0", | ||
"bun-types": "^1.0.1", | ||
"concurrently": "^8.2.1", | ||
"error-stack-parser": "^2.1.4", | ||
"eslint": "^8.48.0", | ||
|
@@ -90,17 +87,14 @@ | |
"madge": "^6.1.0", | ||
"rimraf": "^5.0.1", | ||
"stackframe": "^1.3.4", | ||
"ts-node": "^10.9.1", | ||
"typescript": "^5.2.2", | ||
"vite": "^4.4.9", | ||
"vitest": "0.34.3" | ||
"typescript": "^5.2.2" | ||
}, | ||
"peerDependencies": { | ||
"@effect/data": "^0.18.5" | ||
}, | ||
"config": { | ||
"side": [], | ||
"modules": [], | ||
"global": [] | ||
}, | ||
"peerDependencies": { | ||
"@effect/data": "^0.18.5" | ||
} | ||
} |
Oops, something went wrong.