Skip to content

Commit

Permalink
Feat ci (#55)
Browse files Browse the repository at this point in the history
* feat: update

* feat: update

* feat: update
  • Loading branch information
ryuever authored Oct 1, 2024
1 parent 01fec4d commit f02667c
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 38 deletions.
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: Release
on:
push:
branches:
- feat-ci
- main
- "1-legacy"
- "2-legacy"
Expand Down
8 changes: 4 additions & 4 deletions packages/struct/integer-buffer-set/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@
"access": "public"
},
"dependencies": {
"@x-oasis/invariant": "^0.1.35",
"@x-oasis/is-clamped": "^0.1.35",
"@x-oasis/return-hook": "^0.1.35",
"@x-oasis/heap": "0.1.35"
"@x-oasis/invariant": "workspace:*",
"@x-oasis/is-clamped": "workspace:*",
"@x-oasis/return-hook": "workspace:*",
"@x-oasis/heap": "workspace:*"
}
}
2 changes: 1 addition & 1 deletion packages/struct/integer-buffer-set/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Heap from '@x-oasis/heap';
import isClamped from '@x-oasis/is-clamped';
import invariant from '@x-oasis/invariant';
import isClamped from '@x-oasis/is-clamped';
import returnHook, { ReturnHook } from '@x-oasis/return-hook';
import {
HeapItem,
Expand Down
2 changes: 1 addition & 1 deletion packages/struct/recycler/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import IntegerBufferSet, { IndicesItem } from '@x-oasis/integer-buffer-set';
import { OnRecyclerProcess, RecyclerProps, SafeRange } from './types';
import {
DEFAULT_RECYCLER_TYPE,
RECYCLER_BUFFER_SIZE,
RECYCLER_RESERVED_BUFFER_PER_BATCH,
RECYCLER_THRESHOLD_INDEX_VALUE,
} from './common';
import { OnRecyclerProcess, RecyclerProps, SafeRange } from './types';

export { OnRecyclerProcess, RecyclerProps };

Expand Down
42 changes: 11 additions & 31 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"version": {},
"build": {
"dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**"]
"outputs": [".next/**", "!.next/cache/**", "dist/**"]
},
"check-types": {
"dependsOn": ["^check-types"]
Expand Down

0 comments on commit f02667c

Please sign in to comment.