Skip to content

Commit 07063e2

Browse files
authored
chore: update lockfile (#1516)
1 parent 7b79ea3 commit 07063e2

File tree

17 files changed

+2362
-2339
lines changed

17 files changed

+2362
-2339
lines changed

.eslintrc.json

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

apify-api/plugins/decorators/code-samples-decorator.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
const { existsSync } = require('fs');
2-
const path = require('path');
1+
const { existsSync } = require('node:fs');
2+
const path = require('node:path');
33

44
const X_CODE_SAMPLES_PROPERTY = 'x-codeSamples';
55

apify-docs-theme/src/theme.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
const fs = require('fs');
2-
const path = require('path');
1+
const fs = require('node:fs');
2+
const path = require('node:path');
33

44
const axios = require('axios');
55
const postcssPreset = require('postcss-preset-env');

apify-docs-theme/src/theme/Navbar/Content/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { useLocation } from '@docusaurus/router';
2-
import { useThemeConfig, isRegexpStringMatch } from '@docusaurus/theme-common';
2+
import { isRegexpStringMatch, useThemeConfig } from '@docusaurus/theme-common';
33
import {
44
splitNavbarItems,
55
} from '@docusaurus/theme-common/internal';

apify-docs-theme/src/theme/SearchBar/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import BrowserOnly from '@docusaurus/BrowserOnly';
22
import RouterLink from '@docusaurus/Link';
3-
import { useLocation, useHistory } from '@docusaurus/router';
3+
import { useHistory, useLocation } from '@docusaurus/router';
44
import useDocusaurusContext from '@docusaurus/useDocusaurusContext';
55
import React, { useCallback } from 'react';
66

apify-docs-theme/src/theme/TOCItems/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { useThemeConfig } from '@docusaurus/theme-common';
22
import {
3-
useTOCHighlight,
43
useFilteredAndTreeifiedTOC,
4+
useTOCHighlight,
55
} from '@docusaurus/theme-common/internal';
66
import TOCItemTree from '@theme/TOCItems/Tree';
77
import React, { useMemo } from 'react';

package-lock.json

Lines changed: 2318 additions & 2221 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"postinstall": "patch-package"
4444
},
4545
"devDependencies": {
46-
"@apify/eslint-config": "^0.5.0-beta.4",
46+
"@apify/eslint-config": "0.5.0-beta.4",
4747
"@apify/tsconfig": "^0.1.0",
4848
"@rsbuild/plugin-styled-components": "^1.1.0",
4949
"@types/react": "^18.2.8",
@@ -62,7 +62,7 @@
6262
"path-browserify": "^1.0.1",
6363
"patch-package": "^8.0.0",
6464
"rimraf": "^6.0.0",
65-
"typescript": "^5.7.3",
65+
"typescript": "5.7.3",
6666
"typescript-eslint": "^8.22.0"
6767
},
6868
"dependencies": {

sources/academy/tutorials/node_js/caching_responses_in_puppeteer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { PuppeteerCrawler, Dataset } from 'crawlee';
1+
import { Dataset, PuppeteerCrawler } from 'crawlee';
22

33
const cache = {};
44

sources/academy/tutorials/node_js/dealing_with_dynamic_pages.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { PuppeteerCrawler, Dataset } from 'crawlee';
1+
import { Dataset, PuppeteerCrawler } from 'crawlee';
22

33
const BASE_URL = 'https://demo-webstore.apify.org';
44

0 commit comments

Comments
 (0)