Skip to content

Commit c51aef2

Browse files
authored
Update diplodoc to 5.0 (#13)
1 parent 515b7eb commit c51aef2

19 files changed

+5502
-3293
lines changed

.eslintignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

.eslintrc

Lines changed: 0 additions & 13 deletions
This file was deleted.

.github/workflows/lint-tests.yaml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Lint, Tests
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches:
7+
- main
8+
9+
concurrency:
10+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
11+
cancel-in-progress: true
12+
13+
jobs:
14+
node:
15+
name: datalens-docs
16+
runs-on: ubuntu-24.04
17+
steps:
18+
- uses: actions/checkout@v3
19+
- uses: actions/setup-node@v3
20+
with:
21+
node-version: 22
22+
cache: 'npm'
23+
- run: npm ci
24+
- run: npx playwright install --with-deps chromium
25+
- run: npm run test

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,6 @@ docs/*
1717
npm-debug.log*
1818
yarn-debug.log*
1919
yarn-error.log*
20+
21+
# tests
22+
test-results/.last-run.json

assets/favicon/favicon-120x120.png

2.04 KB
Loading

assets/favicon/favicon-152x152.png

2.3 KB
Loading

assets/favicon/favicon-180x180.png

2.94 KB
Loading

assets/favicon/favicon-192x192.png

2.67 KB
Loading

assets/favicon/favicon.ico

97.3 KB
Binary file not shown.

assets/manifest.json

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"short_name": "Datalens",
3+
"name": "DataLens Tech",
4+
"icons": [
5+
{
6+
"src": "favicon.ico",
7+
"sizes": "76x76 64x64 32x32 16x16",
8+
"type": "image/x-icon"
9+
},
10+
{
11+
"src": "favicon-120x120.png",
12+
"type": "image/png",
13+
"sizes": "120x120"
14+
},
15+
{
16+
"src": "favicon-152x152.png",
17+
"type": "image/png",
18+
"sizes": "152x152"
19+
},
20+
{
21+
"src": "favicon-180x180.png",
22+
"type": "image/png",
23+
"sizes": "180x180"
24+
},
25+
{
26+
"src": "favicon-192x192.png",
27+
"type": "image/png",
28+
"sizes": "192x192"
29+
}
30+
],
31+
"start_url": ".",
32+
"display": "standalone",
33+
"theme_color": "#000000",
34+
"background_color": "#ffffff"
35+
}

0 commit comments

Comments
 (0)