File tree Expand file tree Collapse file tree 7 files changed +11
-10
lines changed Expand file tree Collapse file tree 7 files changed +11
-10
lines changed Original file line number Diff line number Diff line change 1818 - ' packages/endpoint/src/schemas/**'
1919 - ' packages/core/src/**'
2020 - ' examples/benchmark/**'
21+ - ' .github/workflows/benchmark.yml'
2122jobs :
2223 benchmark :
2324
2930 fetch-depth : 1
3031 - uses : actions/setup-node@v4
3132 with :
32- node-version : ' 20 '
33+ node-version : ' 22 '
3334 cache : ' yarn'
3435 - name : Install packages
3536 run : |
Original file line number Diff line number Diff line change 1616 - uses : actions/checkout@v4
1717 - uses : actions/setup-node@v4
1818 with :
19- node-version : ' 20 '
19+ node-version : ' 22 '
2020 cache : ' yarn'
2121 - name : Install packages
2222 run : |
Original file line number Diff line number Diff line change 1- import data from './data.json' assert { type : 'json ' } ;
1+ import data from './data.json' with { type : 'json' } ;
22import {
33 createReducer ,
44 initialState ,
@@ -17,7 +17,7 @@ import {
1717 User ,
1818 ProjectSchemaCollection ,
1919} from './schemas.js' ;
20- import userData from './user.json' assert { type : 'json ' } ;
20+ import userData from './user.json' with { type : 'json' } ;
2121
2222export default function addReducerSuite ( suite ) {
2323 let state = initialState ;
Original file line number Diff line number Diff line change 1- import data from './data.json' assert { type : 'json ' } ;
1+ import data from './data.json' with { type : 'json' } ;
22import { Entity } from './dist/index.js' ;
33import { printStatus } from './printStatus.js' ;
44import {
Original file line number Diff line number Diff line change 1- import data from './data.json' assert { type : 'json ' } ;
1+ import data from './data.json' with { type : 'json' } ;
22import {
33 Entity ,
44 normalize ,
@@ -16,7 +16,7 @@ import {
1616 ProjectSchemaMixin ,
1717 User ,
1818} from './schemas.js' ;
19- import userData from './user.json' assert { type : 'json ' } ;
19+ import userData from './user.json' with { type : 'json' } ;
2020
2121const { result, entities } = normalize ( data , ProjectSchema ) ;
2222const queryState = normalize ( data , ProjectQuery ) ;
Original file line number Diff line number Diff line change @@ -5,10 +5,10 @@ import {
55 ProjectWithBuildTypesDescription ,
66 User ,
77} from './schemas.js' ;
8- import data from '../data.json' assert { type : 'json ' } ;
8+ import data from '../data.json' with { type : 'json' } ;
99import { initialState } from '../dist/index.js' ;
1010import { printStatus } from '../printStatus.js' ;
11- import userData from '../user.json' assert { type : 'json ' } ;
11+ import userData from '../user.json' with { type : 'json' } ;
1212
1313const { result, entities } = normalize ( data , ProjectSchema ) ;
1414
Original file line number Diff line number Diff line change 1- import linkData from './sidebars-endpoint.json' assert { type : 'json' } ;
1+ import linkData from './sidebars-endpoint.json' with { type : 'json' } ;
22
33const redirects = linkData
44 . filter ( ( { id } ) => id !== 'api/Index' )
You can’t perform that action at this time.
0 commit comments