File tree 9 files changed +152
-110
lines changed
9 files changed +152
-110
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "$schema" : " https://docs.renovatebot.com/renovate-schema.json" ,
3
+ "extends" : [
4
+ " config:recommended" ,
5
+ " schedule:weekly" ,
6
+ " :approveMajorUpdates" ,
7
+ " :disablePeerDependencies" ,
8
+ " :semanticCommitTypeAll(chore)"
9
+ ],
10
+ "labels" : [" dependencies" ],
11
+ "rangeStrategy" : " bump" ,
12
+ "postUpdateOptions" : [" pnpmDedupe" ],
13
+ "semanticCommits" : " enabled" ,
14
+ "packageRules" : [
15
+ {
16
+ "groupName" : " all non-major dependencies" ,
17
+ "groupSlug" : " all-minor-patch" ,
18
+ "matchCurrentVersion" : " >=1.0.0" ,
19
+ "matchUpdateTypes" : [" minor" , " patch" ]
20
+ }
21
+ ],
22
+ "ignoreDeps" : [" @types/node" , " node" , " typescript" ]
23
+ }
Original file line number Diff line number Diff line change 31
31
main-branch-name : main
32
32
- name : Run Checks
33
33
run : pnpm run test:pr
34
+ preview :
35
+ name : Preview
36
+ runs-on : ubuntu-latest
37
+ steps :
38
+ - name : Checkout
39
+ uses : actions/checkout@v4
40
+ with :
41
+ fetch-depth : 0
42
+ - name : Setup Tools
43
+ uses : tanstack/config/.github/setup@main
44
+ - name : Build Packages
45
+ run : pnpm run build:all
46
+ - name : Publish Previews
47
+ run : pnpx pkg-pr-new publish --pnpm --compact './packages/*' --template './examples/*/*'
Original file line number Diff line number Diff line change 1
1
{
2
- "name" : " virtual " ,
2
+ "name" : " root " ,
3
3
"private" : true ,
4
4
"repository" : {
5
5
"type" : " git" ,
36
36
" test:sherif"
37
37
]
38
38
},
39
- "namespace" : " @tanstack" ,
40
39
"devDependencies" : {
41
40
"@tanstack/config" : " ^0.9.0" ,
42
41
"@testing-library/jest-dom" : " ^6.4.6" ,
Original file line number Diff line number Diff line change 6
6
"license" : " MIT" ,
7
7
"repository" : {
8
8
"type" : " git" ,
9
- "url" : " git+https://github.com/tanstack/virtual.git"
9
+ "url" : " https://github.com/TanStack/virtual.git" ,
10
+ "directory" : " packages/lit-virtual"
10
11
},
11
- "homepage" : " https://github .com/tanstack/ virtual#readme " ,
12
+ "homepage" : " https://tanstack .com/virtual" ,
12
13
"funding" : {
13
14
"type" : " github" ,
14
15
"url" : " https://github.com/sponsors/tannerlinsley"
15
16
},
17
+ "keywords" : [
18
+ " lit" ,
19
+ " virtual" ,
20
+ " virtual-core" ,
21
+ " datagrid"
22
+ ],
23
+ "scripts" : {
24
+ "clean" : " rimraf ./dist && rimraf ./coverage" ,
25
+ "test:eslint" : " eslint ./src" ,
26
+ "test:types" : " tsc" ,
27
+ "test:build" : " publint --strict" ,
28
+ "test:lib" : " vitest" ,
29
+ "test:lib:dev" : " pnpm run test:lib --watch" ,
30
+ "build" : " vite build"
31
+ },
16
32
"type" : " module" ,
17
33
"types" : " dist/esm/index.d.ts" ,
18
34
"main" : " dist/cjs/index.cjs" ,
31
47
"./package.json" : " ./package.json"
32
48
},
33
49
"sideEffects" : false ,
34
- "scripts" : {
35
- "clean" : " rimraf ./dist && rimraf ./coverage" ,
36
- "test:eslint" : " eslint ./src" ,
37
- "test:types" : " tsc" ,
38
- "test:build" : " publint --strict" ,
39
- "test:lib" : " vitest" ,
40
- "test:lib:dev" : " pnpm run test:lib --watch" ,
41
- "build" : " vite build"
42
- },
43
- "keywords" : [
44
- " lit" ,
45
- " virtual" ,
46
- " virtual-core" ,
47
- " datagrid"
48
- ],
49
50
"files" : [
50
51
" dist" ,
51
52
" src"
Original file line number Diff line number Diff line change 6
6
"license" : " MIT" ,
7
7
"repository" : {
8
8
"type" : " git" ,
9
- "url" : " git+https://github.com/tanstack/virtual.git"
9
+ "url" : " https://github.com/TanStack/virtual.git" ,
10
+ "directory" : " packages/react-virtual"
10
11
},
11
- "homepage" : " https://github .com/tanstack/ virtual#readme " ,
12
+ "homepage" : " https://tanstack .com/virtual" ,
12
13
"funding" : {
13
14
"type" : " github" ,
14
15
"url" : " https://github.com/sponsors/tannerlinsley"
15
16
},
17
+ "keywords" : [
18
+ " react" ,
19
+ " vue" ,
20
+ " solid" ,
21
+ " virtual" ,
22
+ " virtual-core" ,
23
+ " datagrid"
24
+ ],
25
+ "scripts" : {
26
+ "clean" : " rimraf ./dist && rimraf ./coverage" ,
27
+ "test:eslint" : " eslint ./src" ,
28
+ "test:types" : " tsc" ,
29
+ "test:lib" : " vitest" ,
30
+ "test:lib:dev" : " pnpm run test:lib --watch" ,
31
+ "test:build" : " publint --strict" ,
32
+ "build" : " vite build"
33
+ },
16
34
"type" : " module" ,
17
35
"types" : " dist/esm/index.d.ts" ,
18
36
"main" : " dist/cjs/index.cjs" ,
31
49
"./package.json" : " ./package.json"
32
50
},
33
51
"sideEffects" : false ,
34
- "scripts" : {
35
- "clean" : " rimraf ./dist && rimraf ./coverage" ,
36
- "test:eslint" : " eslint ./src" ,
37
- "test:types" : " tsc" ,
38
- "test:lib" : " vitest" ,
39
- "test:lib:dev" : " pnpm run test:lib --watch" ,
40
- "test:build" : " publint --strict" ,
41
- "build" : " vite build"
42
- },
43
- "keywords" : [
44
- " react" ,
45
- " vue" ,
46
- " solid" ,
47
- " virtual" ,
48
- " virtual-core" ,
49
- " datagrid"
50
- ],
51
52
"files" : [
52
53
" dist" ,
53
54
" src"
Original file line number Diff line number Diff line change 6
6
"license" : " MIT" ,
7
7
"repository" : {
8
8
"type" : " git" ,
9
- "url" : " git+https://github.com/tanstack/virtual.git"
9
+ "url" : " https://github.com/TanStack/virtual.git" ,
10
+ "directory" : " packages/solid-virtual"
10
11
},
11
- "homepage" : " https://github .com/tanstack/ virtual#readme " ,
12
+ "homepage" : " https://tanstack .com/virtual" ,
12
13
"funding" : {
13
14
"type" : " github" ,
14
15
"url" : " https://github.com/sponsors/tannerlinsley"
15
16
},
17
+ "keywords" : [
18
+ " react" ,
19
+ " vue" ,
20
+ " solid" ,
21
+ " virtual" ,
22
+ " virtual-core" ,
23
+ " datagrid"
24
+ ],
25
+ "scripts" : {
26
+ "clean" : " rimraf ./dist && rimraf ./coverage" ,
27
+ "test:eslint" : " eslint ./src" ,
28
+ "test:types" : " tsc" ,
29
+ "test:build" : " publint --strict" ,
30
+ "build" : " vite build"
31
+ },
16
32
"type" : " module" ,
17
33
"types" : " dist/esm/index.d.ts" ,
18
34
"main" : " dist/cjs/index.cjs" ,
31
47
"./package.json" : " ./package.json"
32
48
},
33
49
"sideEffects" : false ,
34
- "scripts" : {
35
- "clean" : " rimraf ./dist && rimraf ./coverage" ,
36
- "test:eslint" : " eslint ./src" ,
37
- "test:types" : " tsc" ,
38
- "test:build" : " publint --strict" ,
39
- "build" : " vite build"
40
- },
41
- "keywords" : [
42
- " react" ,
43
- " vue" ,
44
- " solid" ,
45
- " virtual" ,
46
- " virtual-core" ,
47
- " datagrid"
48
- ],
49
50
"files" : [
50
51
" dist" ,
51
52
" src"
Original file line number Diff line number Diff line change 6
6
"license" : " MIT" ,
7
7
"repository" : {
8
8
"type" : " git" ,
9
- "url" : " git+https://github.com/tanstack/virtual.git"
9
+ "url" : " https://github.com/TanStack/virtual.git" ,
10
+ "directory" : " packages/svelte-virtual"
10
11
},
11
- "homepage" : " https://github .com/tanstack/ virtual#readme " ,
12
+ "homepage" : " https://tanstack .com/virtual" ,
12
13
"funding" : {
13
14
"type" : " github" ,
14
15
"url" : " https://github.com/sponsors/tannerlinsley"
15
16
},
17
+ "keywords" : [
18
+ " react" ,
19
+ " vue" ,
20
+ " solid" ,
21
+ " svelte" ,
22
+ " virtual" ,
23
+ " virtual-core" ,
24
+ " datagrid"
25
+ ],
26
+ "scripts" : {
27
+ "clean" : " rimraf ./dist && rimraf ./coverage" ,
28
+ "test:eslint" : " eslint ./src" ,
29
+ "test:types" : " svelte-check --tsconfig ./tsconfig.json" ,
30
+ "test:build" : " publint --strict" ,
31
+ "build" : " svelte-package --input ./src --output ./dist"
32
+ },
16
33
"type" : " module" ,
17
34
"types" : " dist/index.d.ts" ,
18
35
"module" : " dist/index.js" ,
26
43
"./package.json" : " ./package.json"
27
44
},
28
45
"sideEffects" : false ,
29
- "scripts" : {
30
- "clean" : " rimraf ./dist && rimraf ./coverage" ,
31
- "test:eslint" : " eslint ./src" ,
32
- "test:types" : " svelte-check --tsconfig ./tsconfig.json" ,
33
- "test:build" : " publint --strict" ,
34
- "build" : " svelte-package --input ./src --output ./dist"
35
- },
36
- "keywords" : [
37
- " react" ,
38
- " vue" ,
39
- " solid" ,
40
- " svelte" ,
41
- " virtual" ,
42
- " virtual-core" ,
43
- " datagrid"
44
- ],
45
46
"files" : [
46
47
" dist" ,
47
48
" src"
Original file line number Diff line number Diff line change 6
6
"license" : " MIT" ,
7
7
"repository" : {
8
8
"type" : " git" ,
9
- "url" : " git+https://github.com/tanstack/virtual.git"
9
+ "url" : " https://github.com/TanStack/virtual.git" ,
10
+ "directory" : " packages/virtual-core"
10
11
},
11
- "homepage" : " https://github .com/tanstack/ virtual#readme " ,
12
+ "homepage" : " https://tanstack .com/virtual" ,
12
13
"funding" : {
13
14
"type" : " github" ,
14
15
"url" : " https://github.com/sponsors/tannerlinsley"
15
16
},
17
+ "keywords" : [
18
+ " react" ,
19
+ " vue" ,
20
+ " solid" ,
21
+ " virtual" ,
22
+ " virtual-core" ,
23
+ " datagrid"
24
+ ],
25
+ "scripts" : {
26
+ "clean" : " rimraf ./dist && rimraf ./coverage" ,
27
+ "test:eslint" : " eslint ./src" ,
28
+ "test:types" : " tsc" ,
29
+ "test:lib" : " vitest" ,
30
+ "test:lib:dev" : " pnpm run test:lib --watch" ,
31
+ "test:build" : " publint --strict" ,
32
+ "build" : " vite build"
33
+ },
16
34
"type" : " module" ,
17
35
"types" : " dist/esm/index.d.ts" ,
18
36
"main" : " dist/cjs/index.cjs" ,
31
49
"./package.json" : " ./package.json"
32
50
},
33
51
"sideEffects" : false ,
34
- "scripts" : {
35
- "clean" : " rimraf ./dist && rimraf ./coverage" ,
36
- "test:eslint" : " eslint ./src" ,
37
- "test:types" : " tsc" ,
38
- "test:lib" : " vitest" ,
39
- "test:lib:dev" : " pnpm run test:lib --watch" ,
40
- "test:build" : " publint --strict" ,
41
- "build" : " vite build"
42
- },
43
- "keywords" : [
44
- " react" ,
45
- " vue" ,
46
- " solid" ,
47
- " virtual" ,
48
- " virtual-core" ,
49
- " datagrid"
50
- ],
51
52
"files" : [
52
53
" dist" ,
53
54
" src"
Original file line number Diff line number Diff line change 6
6
"license" : " MIT" ,
7
7
"repository" : {
8
8
"type" : " git" ,
9
- "url" : " git+https://github.com/tanstack/virtual.git"
9
+ "url" : " https://github.com/TanStack/virtual.git" ,
10
+ "directory" : " packages/vue-virtual"
10
11
},
11
- "homepage" : " https://github .com/tanstack/ virtual#readme " ,
12
+ "homepage" : " https://tanstack .com/virtual" ,
12
13
"publishConfig" : {
13
14
"registry" : " https://registry.npmjs.org/"
14
15
},
15
16
"funding" : {
16
17
"type" : " github" ,
17
18
"url" : " https://github.com/sponsors/tannerlinsley"
18
19
},
20
+ "keywords" : [
21
+ " react" ,
22
+ " vue" ,
23
+ " solid" ,
24
+ " svelte" ,
25
+ " virtual" ,
26
+ " virtual-core" ,
27
+ " datagrid"
28
+ ],
29
+ "scripts" : {
30
+ "clean" : " rimraf ./dist && rimraf ./coverage" ,
31
+ "test:eslint" : " eslint ./src" ,
32
+ "test:types" : " tsc" ,
33
+ "test:build" : " publint --strict" ,
34
+ "build" : " vite build"
35
+ },
19
36
"type" : " module" ,
20
37
"types" : " dist/esm/index.d.ts" ,
21
38
"main" : " dist/cjs/index.cjs" ,
34
51
"./package.json" : " ./package.json"
35
52
},
36
53
"sideEffects" : false ,
37
- "scripts" : {
38
- "clean" : " rimraf ./dist && rimraf ./coverage" ,
39
- "test:eslint" : " eslint ./src" ,
40
- "test:types" : " tsc" ,
41
- "test:build" : " publint --strict" ,
42
- "build" : " vite build"
43
- },
44
- "keywords" : [
45
- " react" ,
46
- " vue" ,
47
- " solid" ,
48
- " svelte" ,
49
- " virtual" ,
50
- " virtual-core" ,
51
- " datagrid"
52
- ],
53
54
"files" : [
54
55
" dist" ,
55
56
" src"
You can’t perform that action at this time.
0 commit comments