fastypest 1.3.2 → 1.3.3

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.
@@ -1,20 +1,20 @@
1
- #!/usr/bin/env node
2
-
3
- const {existsSync} = require(`fs`);
4
- const {createRequire} = require(`module`);
5
- const {resolve} = require(`path`);
6
-
7
- const relPnpApiPath = "../../../../.pnp.cjs";
8
-
9
- const absPnpApiPath = resolve(__dirname, relPnpApiPath);
10
- const absRequire = createRequire(absPnpApiPath);
11
-
12
- if (existsSync(absPnpApiPath)) {
13
- if (!process.versions.pnp) {
14
- // Setup the environment to be able to require eslint/bin/eslint.js
15
- require(absPnpApiPath).setup();
16
- }
17
- }
18
-
19
- // Defer to the real eslint/bin/eslint.js your application uses
20
- module.exports = absRequire(`eslint/bin/eslint.js`);
1
+ #!/usr/bin/env node
2
+
3
+ const {existsSync} = require(`fs`);
4
+ const {createRequire} = require(`module`);
5
+ const {resolve} = require(`path`);
6
+
7
+ const relPnpApiPath = "../../../../.pnp.cjs";
8
+
9
+ const absPnpApiPath = resolve(__dirname, relPnpApiPath);
10
+ const absRequire = createRequire(absPnpApiPath);
11
+
12
+ if (existsSync(absPnpApiPath)) {
13
+ if (!process.versions.pnp) {
14
+ // Setup the environment to be able to require eslint/bin/eslint.js
15
+ require(absPnpApiPath).setup();
16
+ }
17
+ }
18
+
19
+ // Defer to the real eslint/bin/eslint.js your application uses
20
+ module.exports = absRequire(`eslint/bin/eslint.js`);
@@ -1,20 +1,20 @@
1
- #!/usr/bin/env node
2
-
3
- const {existsSync} = require(`fs`);
4
- const {createRequire} = require(`module`);
5
- const {resolve} = require(`path`);
6
-
7
- const relPnpApiPath = "../../../../.pnp.cjs";
8
-
9
- const absPnpApiPath = resolve(__dirname, relPnpApiPath);
10
- const absRequire = createRequire(absPnpApiPath);
11
-
12
- if (existsSync(absPnpApiPath)) {
13
- if (!process.versions.pnp) {
14
- // Setup the environment to be able to require eslint
15
- require(absPnpApiPath).setup();
16
- }
17
- }
18
-
19
- // Defer to the real eslint your application uses
20
- module.exports = absRequire(`eslint`);
1
+ #!/usr/bin/env node
2
+
3
+ const {existsSync} = require(`fs`);
4
+ const {createRequire} = require(`module`);
5
+ const {resolve} = require(`path`);
6
+
7
+ const relPnpApiPath = "../../../../.pnp.cjs";
8
+
9
+ const absPnpApiPath = resolve(__dirname, relPnpApiPath);
10
+ const absRequire = createRequire(absPnpApiPath);
11
+
12
+ if (existsSync(absPnpApiPath)) {
13
+ if (!process.versions.pnp) {
14
+ // Setup the environment to be able to require eslint
15
+ require(absPnpApiPath).setup();
16
+ }
17
+ }
18
+
19
+ // Defer to the real eslint your application uses
20
+ module.exports = absRequire(`eslint`);
@@ -1,20 +1,20 @@
1
- #!/usr/bin/env node
2
-
3
- const {existsSync} = require(`fs`);
4
- const {createRequire} = require(`module`);
5
- const {resolve} = require(`path`);
6
-
7
- const relPnpApiPath = "../../../../.pnp.cjs";
8
-
9
- const absPnpApiPath = resolve(__dirname, relPnpApiPath);
10
- const absRequire = createRequire(absPnpApiPath);
11
-
12
- if (existsSync(absPnpApiPath)) {
13
- if (!process.versions.pnp) {
14
- // Setup the environment to be able to require eslint/use-at-your-own-risk
15
- require(absPnpApiPath).setup();
16
- }
17
- }
18
-
19
- // Defer to the real eslint/use-at-your-own-risk your application uses
20
- module.exports = absRequire(`eslint/use-at-your-own-risk`);
1
+ #!/usr/bin/env node
2
+
3
+ const {existsSync} = require(`fs`);
4
+ const {createRequire} = require(`module`);
5
+ const {resolve} = require(`path`);
6
+
7
+ const relPnpApiPath = "../../../../.pnp.cjs";
8
+
9
+ const absPnpApiPath = resolve(__dirname, relPnpApiPath);
10
+ const absRequire = createRequire(absPnpApiPath);
11
+
12
+ if (existsSync(absPnpApiPath)) {
13
+ if (!process.versions.pnp) {
14
+ // Setup the environment to be able to require eslint/use-at-your-own-risk
15
+ require(absPnpApiPath).setup();
16
+ }
17
+ }
18
+
19
+ // Defer to the real eslint/use-at-your-own-risk your application uses
20
+ module.exports = absRequire(`eslint/use-at-your-own-risk`);
@@ -1,14 +1,14 @@
1
- {
2
- "name": "eslint",
3
- "version": "9.2.0-sdk",
4
- "main": "./lib/api.js",
5
- "type": "commonjs",
6
- "bin": {
7
- "eslint": "./bin/eslint.js"
8
- },
9
- "exports": {
10
- "./package.json": "./package.json",
11
- ".": "./lib/api.js",
12
- "./use-at-your-own-risk": "./lib/unsupported-api.js"
13
- }
14
- }
1
+ {
2
+ "name": "eslint",
3
+ "version": "9.2.0-sdk",
4
+ "main": "./lib/api.js",
5
+ "type": "commonjs",
6
+ "bin": {
7
+ "eslint": "./bin/eslint.js"
8
+ },
9
+ "exports": {
10
+ "./package.json": "./package.json",
11
+ ".": "./lib/api.js",
12
+ "./use-at-your-own-risk": "./lib/unsupported-api.js"
13
+ }
14
+ }
@@ -1,5 +1,5 @@
1
- # This file is automatically generated by @yarnpkg/sdks.
2
- # Manual changes might be lost!
3
-
4
- integrations:
5
- - vscode
1
+ # This file is automatically generated by @yarnpkg/sdks.
2
+ # Manual changes might be lost!
3
+
4
+ integrations:
5
+ - vscode
@@ -1,20 +1,20 @@
1
- #!/usr/bin/env node
2
-
3
- const {existsSync} = require(`fs`);
4
- const {createRequire} = require(`module`);
5
- const {resolve} = require(`path`);
6
-
7
- const relPnpApiPath = "../../../../.pnp.cjs";
8
-
9
- const absPnpApiPath = resolve(__dirname, relPnpApiPath);
10
- const absRequire = createRequire(absPnpApiPath);
11
-
12
- if (existsSync(absPnpApiPath)) {
13
- if (!process.versions.pnp) {
14
- // Setup the environment to be able to require typescript/bin/tsc
15
- require(absPnpApiPath).setup();
16
- }
17
- }
18
-
19
- // Defer to the real typescript/bin/tsc your application uses
20
- module.exports = absRequire(`typescript/bin/tsc`);
1
+ #!/usr/bin/env node
2
+
3
+ const {existsSync} = require(`fs`);
4
+ const {createRequire} = require(`module`);
5
+ const {resolve} = require(`path`);
6
+
7
+ const relPnpApiPath = "../../../../.pnp.cjs";
8
+
9
+ const absPnpApiPath = resolve(__dirname, relPnpApiPath);
10
+ const absRequire = createRequire(absPnpApiPath);
11
+
12
+ if (existsSync(absPnpApiPath)) {
13
+ if (!process.versions.pnp) {
14
+ // Setup the environment to be able to require typescript/bin/tsc
15
+ require(absPnpApiPath).setup();
16
+ }
17
+ }
18
+
19
+ // Defer to the real typescript/bin/tsc your application uses
20
+ module.exports = absRequire(`typescript/bin/tsc`);
@@ -1,20 +1,20 @@
1
- #!/usr/bin/env node
2
-
3
- const {existsSync} = require(`fs`);
4
- const {createRequire} = require(`module`);
5
- const {resolve} = require(`path`);
6
-
7
- const relPnpApiPath = "../../../../.pnp.cjs";
8
-
9
- const absPnpApiPath = resolve(__dirname, relPnpApiPath);
10
- const absRequire = createRequire(absPnpApiPath);
11
-
12
- if (existsSync(absPnpApiPath)) {
13
- if (!process.versions.pnp) {
14
- // Setup the environment to be able to require typescript/bin/tsserver
15
- require(absPnpApiPath).setup();
16
- }
17
- }
18
-
19
- // Defer to the real typescript/bin/tsserver your application uses
20
- module.exports = absRequire(`typescript/bin/tsserver`);
1
+ #!/usr/bin/env node
2
+
3
+ const {existsSync} = require(`fs`);
4
+ const {createRequire} = require(`module`);
5
+ const {resolve} = require(`path`);
6
+
7
+ const relPnpApiPath = "../../../../.pnp.cjs";
8
+
9
+ const absPnpApiPath = resolve(__dirname, relPnpApiPath);
10
+ const absRequire = createRequire(absPnpApiPath);
11
+
12
+ if (existsSync(absPnpApiPath)) {
13
+ if (!process.versions.pnp) {
14
+ // Setup the environment to be able to require typescript/bin/tsserver
15
+ require(absPnpApiPath).setup();
16
+ }
17
+ }
18
+
19
+ // Defer to the real typescript/bin/tsserver your application uses
20
+ module.exports = absRequire(`typescript/bin/tsserver`);
@@ -1,20 +1,20 @@
1
- #!/usr/bin/env node
2
-
3
- const {existsSync} = require(`fs`);
4
- const {createRequire} = require(`module`);
5
- const {resolve} = require(`path`);
6
-
7
- const relPnpApiPath = "../../../../.pnp.cjs";
8
-
9
- const absPnpApiPath = resolve(__dirname, relPnpApiPath);
10
- const absRequire = createRequire(absPnpApiPath);
11
-
12
- if (existsSync(absPnpApiPath)) {
13
- if (!process.versions.pnp) {
14
- // Setup the environment to be able to require typescript/lib/tsc.js
15
- require(absPnpApiPath).setup();
16
- }
17
- }
18
-
19
- // Defer to the real typescript/lib/tsc.js your application uses
20
- module.exports = absRequire(`typescript/lib/tsc.js`);
1
+ #!/usr/bin/env node
2
+
3
+ const {existsSync} = require(`fs`);
4
+ const {createRequire} = require(`module`);
5
+ const {resolve} = require(`path`);
6
+
7
+ const relPnpApiPath = "../../../../.pnp.cjs";
8
+
9
+ const absPnpApiPath = resolve(__dirname, relPnpApiPath);
10
+ const absRequire = createRequire(absPnpApiPath);
11
+
12
+ if (existsSync(absPnpApiPath)) {
13
+ if (!process.versions.pnp) {
14
+ // Setup the environment to be able to require typescript/lib/tsc.js
15
+ require(absPnpApiPath).setup();
16
+ }
17
+ }
18
+
19
+ // Defer to the real typescript/lib/tsc.js your application uses
20
+ module.exports = absRequire(`typescript/lib/tsc.js`);