Skip to content

Commit

Permalink
save
Browse files Browse the repository at this point in the history
  • Loading branch information
leonitousconforti committed Dec 28, 2024
1 parent fb2257d commit 23c7eb4
Show file tree
Hide file tree
Showing 30 changed files with 5,240 additions and 142 deletions.
9 changes: 5 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@ dist/
build/
coverage/
node_modules/
packages/**/docs/

docs/*
!docs/_config.yml
scratchpad/*
!scratchpad/tsconfig.json
/docs/*
!/docs/_config.yml
/scratchpad/*
!/scratchpad/tsconfig.json
2 changes: 1 addition & 1 deletion docs/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ remote_theme: mikearnaldi/just-the-docs
search_enabled: true
aux_links:
"GitHub":
- "//github.com/effect-ts/effect"
- 'https://github.com/leonitousconforti/tinyburg'
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
"private": true,
"type": "module",
"workspaces": [
"packages/*",
"apps/*"
"packages/treasury"
],
"scripts": {
"build": "tsc -b tsconfig.build.json && pnpm --recursive --parallel run build",
Expand Down
2 changes: 1 addition & 1 deletion packages/bitprints/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@tinyburg/fount",
"name": "@tinyburg/bitprints",
"version": "0.0.0",
"description": "The server template",
"repository": {
Expand Down
78 changes: 39 additions & 39 deletions packages/doorman/package.json
Original file line number Diff line number Diff line change
@@ -1,43 +1,43 @@
{
"name": "@tinyburg/fount",
"version": "0.0.0",
"type": "module",
"license": "MIT",
"description": "The server template",
"repository": {
"type": "git",
"url": "https://github.com/leonitousconforti/tinyburg.git",
"directory": "packages/fount"
},
"publishConfig": {
"access": "public",
"directory": "dist"
},
"scripts": {
"codegen": "build-utils prepare-v2",
"build": "pnpm build-esm && pnpm build-annotate && pnpm build-cjs && build-utils pack-v2",
"build-esm": "tsc -b tsconfig.build.json",
"build-cjs": "babel build/esm --plugins @babel/transform-export-namespace-from --plugins @babel/transform-modules-commonjs --out-dir build/cjs --source-maps",
"build-annotate": "babel build/esm --plugins annotate-pure-calls --out-dir build/esm --source-maps",
"check": "tsc -b tsconfig.json",
"test": "vitest",
"coverage": "vitest --coverage"
},
"dependencies": {
"@effect/platform": "latest",
"@effect/platform-node": "latest",
"effect": "latest"
},
"effect": {
"generateExports": {
"include": [
"**/*.ts"
]
"name": "@tinyburg/doorman",
"version": "0.0.0",
"description": "The server template",
"repository": {
"type": "git",
"url": "https://github.com/leonitousconforti/tinyburg.git",
"directory": "packages/fount"
},
"generateIndex": {
"include": [
"**/*.ts"
]
"license": "MIT",
"type": "module",
"scripts": {
"build": "pnpm build-esm && pnpm build-annotate && pnpm build-cjs && build-utils pack-v2",
"build-annotate": "babel build/esm --plugins annotate-pure-calls --out-dir build/esm --source-maps",
"build-cjs": "babel build/esm --plugins @babel/transform-export-namespace-from --plugins @babel/transform-modules-commonjs --out-dir build/cjs --source-maps",
"build-esm": "tsc -b tsconfig.build.json",
"check": "tsc -b tsconfig.json",
"codegen": "build-utils prepare-v2",
"coverage": "vitest --coverage",
"test": "vitest"
},
"dependencies": {
"@effect/platform": "latest",
"@effect/platform-node": "latest",
"effect": "latest"
},
"publishConfig": {
"access": "public",
"directory": "dist"
},
"effect": {
"generateExports": {
"include": [
"**/*.ts"
]
},
"generateIndex": {
"include": [
"**/*.ts"
]
}
}
}
}
2 changes: 1 addition & 1 deletion packages/explorer/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@tinyburg/fount",
"name": "@tinyburg/explorer",
"version": "0.0.0",
"description": "The server template",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/insight/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@tinyburg/fount",
"name": "@tinyburg/insight",
"version": "0.0.0",
"description": "The server template",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/nucleus/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@tinyburg/fount",
"name": "@tinyburg/nucleus",
"version": "0.0.0",
"description": "The server template",
"repository": {
Expand Down
Loading

0 comments on commit 23c7eb4

Please sign in to comment.