File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 33 workflow_dispatch :
44 push :
55 branches : [canary]
6- # paths: ['packages/filters/**']
6+ paths : ['packages/filters/**']
77
88jobs :
99 publish-canary :
5252 run : |
5353 NEXT_VERSION="v$(cat packages/filters/package.json | jq ".version" -r)"
5454 git add packages/filters/package.json
55- git commit -m "${NEXT_VERSION}" --no-verify
55+ git commit --amend - m "${NEXT_VERSION}" --no-verify
5656 git tag $NEXT_VERSION
57- git push origin HEAD --no-verify
57+ git push origin HEAD --force-with-lease -- no-verify
5858 git push origin $NEXT_VERSION --no-verify
Original file line number Diff line number Diff line change 11{
22 "name" : " @bazzaui/filters" ,
3- "version" : " 0.3.2025073005 " ,
3+ "version" : " 0.3.2025073006 " ,
44 "private" : false ,
55 "type" : " module" ,
66 "main" : " ./dist/index.js" ,
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import { dateFilterOperators } from '../core/operators.js'
1010import type { FilterModel } from '../core/types.js'
1111import { intersection } from './array.js'
1212
13- export function optionFilterFn < TData > (
13+ export function optionFilterFn (
1414 inputData : string ,
1515 filterValue : FilterModel < 'option' > ,
1616) {
@@ -64,7 +64,7 @@ export function multiOptionFilterFn(
6464 }
6565}
6666
67- export function dateFilterFn < TData > (
67+ export function dateFilterFn (
6868 inputData : Date ,
6969 filterValue : FilterModel < 'date' > ,
7070) {
@@ -114,7 +114,7 @@ export function dateFilterFn<TData>(
114114 }
115115}
116116
117- export function textFilterFn < TData > (
117+ export function textFilterFn (
118118 inputData : string ,
119119 filterValue : FilterModel < 'text' > ,
120120) {
@@ -135,7 +135,7 @@ export function textFilterFn<TData>(
135135 }
136136}
137137
138- export function numberFilterFn < TData > (
138+ export function numberFilterFn (
139139 inputData : number ,
140140 filterValue : FilterModel < 'number' > ,
141141) {
You can’t perform that action at this time.
0 commit comments