Skip to content
This repository has been archived by the owner on Jul 16, 2024. It is now read-only.

Commit

Permalink
build with preconstruct (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-smart authored Oct 4, 2023
1 parent d5b242c commit 7d0bf49
Show file tree
Hide file tree
Showing 35 changed files with 1,893 additions and 1,512 deletions.
5 changes: 5 additions & 0 deletions .changeset/fluffy-rocks-fry.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@effect/typeclass": minor
---

update effect
5 changes: 5 additions & 0 deletions .changeset/tiny-yaks-behave.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@effect/typeclass": minor
---

build with preconstruct
29 changes: 28 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,37 @@
coverage/
*.tsbuildinfo
node_modules/
yarn-error.log
.ultra.cache.json
.DS_Store
tmp/
build/
dist/
.direnv/

# files
/dist
/Alternative
/Applicative
/Bicovariant
/Bounded
/Chainable
/Contravariant
/Coproduct
/Covariant
/Filterable
/FlatMap
/Foldable
/Invariant
/Monad
/Monoid
/Of
/Pointed
/Product
/SemiAlternative
/SemiApplicative
/SemiCoproduct
/SemiProduct
/Semigroup
/Traversable
/TraversableFilterable
/data
7 changes: 7 additions & 0 deletions .madgerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"detectiveOptions": {
"ts": {
"skipTypeImports": true
}
}
}
38 changes: 35 additions & 3 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"typescript.tsdk": "node_modules/typescript/lib",
"typescript.preferences.importModuleSpecifier": "non-relative",
"typescript.preferences.importModuleSpecifier": "project-relative",
"typescript.enablePromptUseWorkspaceTsdk": true,
"editor.formatOnSave": true,
"eslint.format.enable": true,
Expand All @@ -22,7 +22,11 @@
"[typescriptreact]": {
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"eslint.validate": ["markdown", "javascript", "typescript"],
"eslint.validate": [
"markdown",
"javascript",
"typescript"
],
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
Expand All @@ -43,5 +47,33 @@
"files.watcherExclude": {
"**/target": true
},
"files.insertFinalNewline": true
"files.insertFinalNewline": true,
"files.exclude": {
"dist": true,
"Alternative": true,
"Applicative": true,
"Bicovariant": true,
"Bounded": true,
"Chainable": true,
"Contravariant": true,
"Coproduct": true,
"Covariant": true,
"Filterable": true,
"FlatMap": true,
"Foldable": true,
"Invariant": true,
"Monad": true,
"Monoid": true,
"Of": true,
"Pointed": true,
"Product": true,
"SemiAlternative": true,
"SemiApplicative": true,
"SemiCoproduct": true,
"SemiProduct": true,
"Semigroup": true,
"Traversable": true,
"TraversableFilterable": true,
"data": true
}
}
4 changes: 4 additions & 0 deletions babel.config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"plugins": [["annotate-pure-calls"]],
"presets": ["@babel/preset-typescript"]
}
Loading

0 comments on commit 7d0bf49

Please sign in to comment.