Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove standalone package #317

Merged
merged 1 commit into from
Jul 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 0 additions & 56 deletions .github/workflows/binary-release.yml

This file was deleted.

1 change: 0 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ jobs:
matrix:
package_name:
[
standalone,
hello,
mymath,
string,
Expand Down
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,8 @@ Playground for TypeScript
- [x] `@kitsuyui/string` ... simple string package
- [x] `@kitsuyui/mymath` ... simple math package
- [x] `@kitsuyui/luxon-ext` ... extension for [luxon](https://moment.github.io/luxon/)
- [x] `@kitsuyu/standalone` ... make a standalone binary from TypeScript
- [x] Binary application
- [x] NPM package
- [x] CLI
- [x] `@kitsuyui/intended-rollback` ... intended transaction rollback for prisma
- [x] `@kitsuyui/incremental-color-palette` ... incremental color palette generator

## Docs

Expand Down
3 changes: 0 additions & 3 deletions packages/hello/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@
"build": "tsup src/index.ts --clean",
"dev": "pnpm build --watch"
},
"bin": {
"ts-playground-main": "./dist/main.js"
},
"exports": {
".": {
"import": "./dist/index.mjs",
Expand Down
3 changes: 0 additions & 3 deletions packages/incremental-color-palette/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@
"dev": "pnpm build --watch",
"example": "tsx example.ts"
},
"bin": {
"ts-playground-main": "./dist/main.js"
},
"exports": {
".": {
"import": "./dist/index.mjs",
Expand Down
3 changes: 0 additions & 3 deletions packages/intended-rollback/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@
"build": "tsup src/index.ts --clean",
"dev": "pnpm build --watch"
},
"bin": {
"ts-playground-main": "./dist/main.js"
},
"exports": {
".": {
"import": "./dist/index.mjs",
Expand Down
3 changes: 0 additions & 3 deletions packages/luxon-ext/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@
"build": "tsup src/index.ts --clean",
"dev": "pnpm build --watch"
},
"bin": {
"ts-playground-main": "./dist/main.js"
},
"exports": {
".": {
"import": "./dist/index.mjs",
Expand Down
3 changes: 0 additions & 3 deletions packages/mymath/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@
"build": "tsup src/index.ts --clean",
"dev": "pnpm build --watch"
},
"bin": {
"ts-playground-main": "./dist/main.js"
},
"exports": {
".": {
"import": "./dist/index.mjs",
Expand Down
39 changes: 0 additions & 39 deletions packages/standalone/package.json

This file was deleted.

9 changes: 0 additions & 9 deletions packages/standalone/src/index.test.ts

This file was deleted.

18 changes: 0 additions & 18 deletions packages/standalone/src/index.ts

This file was deleted.

2 changes: 0 additions & 2 deletions packages/standalone/src/main.ts

This file was deleted.

3 changes: 0 additions & 3 deletions packages/string/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@
"build": "tsup src/index.ts --clean",
"dev": "pnpm build --watch"
},
"bin": {
"ts-playground-main": "./dist/main.js"
},
"exports": {
".": {
"import": "./dist/index.mjs",
Expand Down
Loading