@slicemachine/init 1.1.17-dev-070.9 → 1.1.17-dev-070.11
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.
- package/.eslintrc.js +24 -0
- package/package.json +4 -4
- package/.eslintrc.json +0 -21
package/.eslintrc.js
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
module.exports = {
|
|
2
|
+
settings: {
|
|
3
|
+
"import/resolver": {
|
|
4
|
+
typescript: {},
|
|
5
|
+
},
|
|
6
|
+
},
|
|
7
|
+
parser: "@typescript-eslint/parser",
|
|
8
|
+
parserOptions: {
|
|
9
|
+
project: [
|
|
10
|
+
"../../tsconfig-node.json",
|
|
11
|
+
"./__tests__/tsconfig.json",
|
|
12
|
+
"./tsconfig.json",
|
|
13
|
+
],
|
|
14
|
+
tsconfigRootDir: __dirname,
|
|
15
|
+
},
|
|
16
|
+
plugins: ["@typescript-eslint", "import", "jest"],
|
|
17
|
+
extends: [
|
|
18
|
+
"plugin:@typescript-eslint/recommended",
|
|
19
|
+
"plugin:@typescript-eslint/recommended-requiring-type-checking",
|
|
20
|
+
"plugin:jest/recommended",
|
|
21
|
+
"eslint-config-prettier",
|
|
22
|
+
],
|
|
23
|
+
ignorePatterns: ["build"],
|
|
24
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@slicemachine/init",
|
|
3
|
-
"version": "1.1.17-dev-070.
|
|
3
|
+
"version": "1.1.17-dev-070.11",
|
|
4
4
|
"description": "The easiest way to add Slice Machine to your project",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"bin": {
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@hapi/hapi": "^20.2.0",
|
|
23
23
|
"@prismicio/types-internal": "^1.5.3",
|
|
24
|
-
"@slicemachine/client": "1.1.17-dev-070.
|
|
25
|
-
"@slicemachine/core": "1.1.17-dev-070.
|
|
24
|
+
"@slicemachine/client": "1.1.17-dev-070.11",
|
|
25
|
+
"@slicemachine/core": "1.1.17-dev-070.11",
|
|
26
26
|
"adm-zip": "^0.5.9",
|
|
27
27
|
"analytics-node": "^6.0.0",
|
|
28
28
|
"axios": "^0.24.0",
|
|
@@ -67,5 +67,5 @@
|
|
|
67
67
|
"engines": {
|
|
68
68
|
"node": ">=14"
|
|
69
69
|
},
|
|
70
|
-
"gitHead": "
|
|
70
|
+
"gitHead": "0eee573bce7735c5e8be4b78c5382ffeea3b1499"
|
|
71
71
|
}
|
package/.eslintrc.json
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"settings": {
|
|
3
|
-
"import/resolver": {
|
|
4
|
-
"typescript": {}
|
|
5
|
-
}
|
|
6
|
-
},
|
|
7
|
-
"parser": "@typescript-eslint/parser",
|
|
8
|
-
"parserOptions": {
|
|
9
|
-
"project": "./tsconfig.json",
|
|
10
|
-
"tsconfigRootDir": "./",
|
|
11
|
-
"createDefaultProgram": true // create default program for excluded files (such as test), this will increase performance but allow tests not to be transpiled.
|
|
12
|
-
},
|
|
13
|
-
"plugins": ["@typescript-eslint", "import", "jest"],
|
|
14
|
-
"extends": [
|
|
15
|
-
"plugin:@typescript-eslint/recommended",
|
|
16
|
-
"plugin:@typescript-eslint/recommended-requiring-type-checking",
|
|
17
|
-
"plugin:jest/recommended",
|
|
18
|
-
"eslint-config-prettier"
|
|
19
|
-
],
|
|
20
|
-
"ignorePatterns": ["build"]
|
|
21
|
-
}
|