@remotion/eslint-config 3.0.0-processing.8 → 3.0.0-rc.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,231 @@
1
+ "use strict";
2
+ // Taken from https://github.com/microsoft/rushstack/blob/main/eslint/eslint-patch/src/modern-module-resolution.ts
3
+ var __importDefault = (this && this.__importDefault) || function (mod) {
4
+ return (mod && mod.__esModule) ? mod : { "default": mod };
5
+ };
6
+ Object.defineProperty(exports, "__esModule", { value: true });
7
+ exports.allowESLintShareableConfig = void 0;
8
+ // Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
9
+ // See LICENSE in the project root for license information.
10
+ // This is a workaround for https://github.com/eslint/eslint/issues/3458
11
+ //
12
+ // To correct how ESLint searches for plugin packages, add this line to the top of your project's .eslintrc.js file:
13
+ //
14
+ // require("@rushstack/eslint-patch/modern-module-resolution");
15
+ //
16
+ const path_1 = __importDefault(require("path"));
17
+ const fs_1 = __importDefault(require("fs"));
18
+ const allowESLintShareableConfig = () => {
19
+ const isModuleResolutionError = (ex) => typeof ex === "object" &&
20
+ !!ex &&
21
+ "code" in ex &&
22
+ ex.code === "MODULE_NOT_FOUND";
23
+ // Module path for eslintrc.cjs
24
+ // Example: ".../@eslint/eslintrc/dist/eslintrc.cjs"
25
+ let eslintrcBundlePath = undefined;
26
+ // Module path for config-array-factory.js
27
+ // Example: ".../@eslint/eslintrc/lib/config-array-factory"
28
+ let configArrayFactoryPath = undefined;
29
+ // Module path for relative-module-resolver.js
30
+ // Example: ".../@eslint/eslintrc/lib/shared/relative-module-resolver"
31
+ let moduleResolverPath = undefined;
32
+ // Folder path where ESLint's package.json can be found
33
+ // Example: ".../node_modules/eslint"
34
+ let eslintFolder = undefined;
35
+ // Probe for the ESLint >=8.0.0 layout:
36
+ for (let currentModule = module;;) {
37
+ if (!eslintrcBundlePath) {
38
+ // For ESLint >=8.0.0, all @eslint/eslintrc code is bundled at this path:
39
+ // .../@eslint/eslintrc/dist/eslintrc.cjs
40
+ try {
41
+ const eslintrcFolder = path_1.default.dirname(require.resolve("@eslint/eslintrc/package.json", {
42
+ paths: [currentModule.path],
43
+ }));
44
+ // Make sure we actually resolved the module in our call path
45
+ // and not some other spurious dependency.
46
+ if (path_1.default.join(eslintrcFolder, "dist/eslintrc.cjs") ===
47
+ currentModule.filename) {
48
+ eslintrcBundlePath = path_1.default.join(eslintrcFolder, "dist/eslintrc.cjs");
49
+ }
50
+ }
51
+ catch (ex) {
52
+ // Module resolution failures are expected, as we're walking
53
+ // up our require stack to look for eslint. All other errors
54
+ // are rethrown.
55
+ if (!isModuleResolutionError(ex)) {
56
+ throw ex;
57
+ }
58
+ }
59
+ }
60
+ else {
61
+ // Next look for a file in ESLint's folder
62
+ // .../eslint/lib/cli-engine/cli-engine.js
63
+ try {
64
+ const eslintCandidateFolder = path_1.default.dirname(require.resolve("eslint/package.json", {
65
+ paths: [currentModule.path],
66
+ }));
67
+ // Make sure we actually resolved the module in our call path
68
+ // and not some other spurious dependency.
69
+ if (path_1.default.join(eslintCandidateFolder, "lib/cli-engine/cli-engine.js") ===
70
+ currentModule.filename) {
71
+ eslintFolder = eslintCandidateFolder;
72
+ break;
73
+ }
74
+ }
75
+ catch (ex) {
76
+ // Module resolution failures are expected, as we're walking
77
+ // up our require stack to look for eslint. All other errors
78
+ // are rethrown.
79
+ if (!isModuleResolutionError(ex)) {
80
+ throw ex;
81
+ }
82
+ }
83
+ }
84
+ if (!currentModule.parent) {
85
+ break;
86
+ }
87
+ currentModule = currentModule.parent;
88
+ }
89
+ if (!eslintFolder) {
90
+ // Probe for the ESLint >=7.8.0 layout:
91
+ for (let currentModule = module;;) {
92
+ if (!configArrayFactoryPath) {
93
+ // For ESLint >=7.8.0, config-array-factory.js is at this path:
94
+ // .../@eslint/eslintrc/lib/config-array-factory.js
95
+ try {
96
+ const eslintrcFolder = path_1.default.dirname(require.resolve("@eslint/eslintrc/package.json", {
97
+ paths: [currentModule.path],
98
+ }));
99
+ if (path_1.default.join(eslintrcFolder, "/lib/config-array-factory.js") ==
100
+ currentModule.filename) {
101
+ configArrayFactoryPath = path_1.default.join(eslintrcFolder, "lib/config-array-factory.js");
102
+ moduleResolverPath = path_1.default.join(eslintrcFolder, "lib/shared/relative-module-resolver");
103
+ }
104
+ }
105
+ catch (ex) {
106
+ // Module resolution failures are expected, as we're walking
107
+ // up our require stack to look for eslint. All other errors
108
+ // are rethrown.
109
+ if (!isModuleResolutionError(ex)) {
110
+ throw ex;
111
+ }
112
+ }
113
+ }
114
+ else {
115
+ // Next look for a file in ESLint's folder
116
+ // .../eslint/lib/cli-engine/cli-engine.js
117
+ try {
118
+ const eslintCandidateFolder = path_1.default.dirname(require.resolve("eslint/package.json", {
119
+ paths: [currentModule.path],
120
+ }));
121
+ if (path_1.default.join(eslintCandidateFolder, "lib/cli-engine/cli-engine.js") ==
122
+ currentModule.filename) {
123
+ eslintFolder = eslintCandidateFolder;
124
+ break;
125
+ }
126
+ }
127
+ catch (ex) {
128
+ // Module resolution failures are expected, as we're walking
129
+ // up our require stack to look for eslint. All other errors
130
+ // are rethrown.
131
+ if (!isModuleResolutionError(ex)) {
132
+ throw ex;
133
+ }
134
+ }
135
+ }
136
+ if (!currentModule.parent) {
137
+ break;
138
+ }
139
+ currentModule = currentModule.parent;
140
+ }
141
+ }
142
+ if (!eslintFolder) {
143
+ // Probe for the <7.8.0 layout:
144
+ for (let currentModule = module;;) {
145
+ // For ESLint <7.8.0, config-array-factory.js was at this path:
146
+ // .../eslint/lib/cli-engine/config-array-factory.js
147
+ if (/[\\/]eslint[\\/]lib[\\/]cli-engine[\\/]config-array-factory\.js$/i.test(currentModule.filename)) {
148
+ eslintFolder = path_1.default.join(path_1.default.dirname(currentModule.filename), "../..");
149
+ configArrayFactoryPath = path_1.default.join(eslintFolder, "lib/cli-engine/config-array-factory");
150
+ moduleResolverPath = path_1.default.join(eslintFolder, "lib/shared/relative-module-resolver");
151
+ break;
152
+ }
153
+ if (!currentModule.parent) {
154
+ // This was tested with ESLint 6.1.0 .. 7.12.1.
155
+ throw new Error("Failed to patch ESLint because the calling module was not recognized.\n" +
156
+ "If you are using a newer ESLint version that may be unsupported, please create a GitHub issue:\n" +
157
+ "https://github.com/microsoft/rushstack/issues");
158
+ }
159
+ currentModule = currentModule.parent;
160
+ }
161
+ }
162
+ // Detect the ESLint package version
163
+ const eslintPackageJson = fs_1.default
164
+ .readFileSync(path_1.default.join(eslintFolder, "package.json"))
165
+ .toString();
166
+ const eslintPackageObject = JSON.parse(eslintPackageJson);
167
+ const eslintPackageVersion = eslintPackageObject.version;
168
+ const versionMatch = /^([0-9]+)\./.exec(eslintPackageVersion); // parse the SemVer MAJOR part
169
+ if (!versionMatch) {
170
+ throw new Error("Unable to parse ESLint version: " + eslintPackageVersion);
171
+ }
172
+ const eslintMajorVersion = Number(versionMatch[1]);
173
+ if (!(eslintMajorVersion >= 6 && eslintMajorVersion <= 8)) {
174
+ throw new Error("The patch-eslint.js script has only been tested with ESLint version 6.x, 7.x, and 8.x." +
175
+ ` (Your version: ${eslintPackageVersion})\n` +
176
+ "Consider reporting a GitHub issue:\n" +
177
+ "https://github.com/microsoft/rushstack/issues");
178
+ }
179
+ let ConfigArrayFactory;
180
+ if (eslintMajorVersion === 8) {
181
+ ConfigArrayFactory = require(eslintrcBundlePath).Legacy.ConfigArrayFactory;
182
+ }
183
+ else {
184
+ ConfigArrayFactory = require(configArrayFactoryPath).ConfigArrayFactory;
185
+ }
186
+ if (!ConfigArrayFactory.__patched) {
187
+ ConfigArrayFactory.__patched = true;
188
+ let ModuleResolver;
189
+ if (eslintMajorVersion === 8) {
190
+ ModuleResolver = require(eslintrcBundlePath).Legacy.ModuleResolver;
191
+ }
192
+ else {
193
+ ModuleResolver = require(moduleResolverPath);
194
+ }
195
+ const originalLoadPlugin = ConfigArrayFactory.prototype._loadPlugin;
196
+ if (eslintMajorVersion === 6) {
197
+ // ESLint 6.x
198
+ ConfigArrayFactory.prototype._loadPlugin = function (name, importerPath, importerName) {
199
+ const originalResolve = ModuleResolver.resolve;
200
+ try {
201
+ ModuleResolver.resolve = function (moduleName, relativeToPath) {
202
+ // resolve using importerPath instead of relativeToPath
203
+ return originalResolve.call(this, moduleName, importerPath);
204
+ };
205
+ return originalLoadPlugin.apply(this, arguments);
206
+ }
207
+ finally {
208
+ ModuleResolver.resolve = originalResolve;
209
+ }
210
+ };
211
+ }
212
+ else {
213
+ // ESLint 7.x || 8.x
214
+ ConfigArrayFactory.prototype._loadPlugin = function (name, ctx) {
215
+ const originalResolve = ModuleResolver.resolve;
216
+ try {
217
+ ModuleResolver.resolve = function (moduleName, relativeToPath) {
218
+ // resolve using ctx.filePath instead of relativeToPath
219
+ return originalResolve.call(this, moduleName, ctx.filePath);
220
+ };
221
+ return originalLoadPlugin.apply(this, arguments);
222
+ }
223
+ finally {
224
+ ModuleResolver.resolve = originalResolve;
225
+ }
226
+ };
227
+ }
228
+ }
229
+ };
230
+ exports.allowESLintShareableConfig = allowESLintShareableConfig;
231
+ //# sourceMappingURL=patch-eslint.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"patch-eslint.js","sourceRoot":"","sources":["../src/patch-eslint.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remotion/eslint-config",
3
- "version": "3.0.0-processing.8+0286800b9",
3
+ "version": "3.0.0-rc.7+fdd22981c",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -16,23 +16,31 @@
16
16
  "author": "Jonny Burger <jonny@remotion.dev>",
17
17
  "license": "ISC",
18
18
  "dependencies": {
19
- "@remotion/eslint-plugin": "3.0.0-processing.8+0286800b9",
20
- "@typescript-eslint/eslint-plugin": "^4.22.0",
21
- "@typescript-eslint/parser": "^4.22.0",
22
- "eslint-config-prettier": "^8.2.0",
23
- "eslint-config-xo": "^0.35.0",
24
- "eslint-config-xo-react": "^0.24.0",
25
- "eslint-plugin-10x": "^1.5.0",
26
- "eslint-plugin-react": "^7.23.2",
27
- "eslint-plugin-react-hooks": "^4.2.0"
19
+ "@remotion/eslint-plugin": "3.0.0-rc.7+fdd22981c",
20
+ "@typescript-eslint/eslint-plugin": "5.19.0",
21
+ "@typescript-eslint/parser": "5.19.0",
22
+ "eslint-plugin-10x": "1.5.2",
23
+ "eslint-plugin-react": "7.29.4",
24
+ "eslint-plugin-react-hooks": "4.4.0"
25
+ },
26
+ "peerDependencies": {
27
+ "eslint": ">=7.15.0"
28
28
  },
29
29
  "devDependencies": {
30
- "@types/babel__core": "^7.1.12",
31
- "@types/babel__template": "^7.4.0",
32
- "typescript": "4.1.3"
30
+ "@types/node": "17.0.17",
31
+ "eslint": "8.13.0",
32
+ "typescript": "^4.5.5"
33
33
  },
34
+ "keywords": [
35
+ "remotion",
36
+ "ffmpeg",
37
+ "video",
38
+ "react",
39
+ "puppeteer",
40
+ "player"
41
+ ],
34
42
  "publishConfig": {
35
43
  "access": "public"
36
44
  },
37
- "gitHead": "0286800b926f04315c479608567714beb6bd2049"
45
+ "gitHead": "fdd22981cb15bf2a5bdb367c5c30b4bf770fc907"
38
46
  }