layerpro 0.0.64 → 0.0.68
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/{dist/LICENSE.txt → LICENSE.txt} +0 -0
- package/{dist/README.md → README.md} +0 -0
- package/index.js +2 -7
- package/package.json +142 -138
- package/.editorconfig +0 -13
- package/.env +0 -3
- package/.eslintignore +0 -12
- package/.eslintrc.json +0 -110
- package/.gitattributes +0 -2
- package/.github/FUNDING.yml +0 -12
- package/.github/dependabot.yml +0 -12
- package/.jsbeautifyrc +0 -26
- package/.prettierignore +0 -2
- package/.prettierrc +0 -7
- package/.vscode/launch.json +0 -22
- package/.vscode/settings.json +0 -84
- package/.vscodeignore +0 -28
- package/__mocks__/fileMock.js +0 -3
- package/__mocks__/styleMock.js +0 -3
- package/babel.config.js +0 -34
- package/backup.bat +0 -43
- package/coverage/coverage-final.json +0 -1
- package/coverage/lcov-report/base.css +0 -224
- package/coverage/lcov-report/block-navigation.js +0 -87
- package/coverage/lcov-report/favicon.png +0 -0
- package/coverage/lcov-report/index.html +0 -101
- package/coverage/lcov-report/prettify.css +0 -1
- package/coverage/lcov-report/prettify.js +0 -2
- package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
- package/coverage/lcov-report/sorter.js +0 -196
- package/coverage/lcov.info +0 -0
- package/documents/LICENSE.txt +0 -21
- package/documents/README.md +0 -7
- package/documents/SECURITY.md +0 -3
- package/init.js +0 -33
- package/jest.config.js +0 -61
- package/jsconfig.json +0 -10
- package/node/createTag.js +0 -7
- package/node/gitDeploy.js +0 -7
- package/node/goLive.js +0 -7
- package/scripts/genLayer.jsx +0 -234
- package/scripts/message.jsx +0 -280
- package/scripts/mouseCoords.jsx +0 -45
- package/scripts/popup.jsx +0 -612
- package/scripts/purge.jsx +0 -29
- package/scripts/smoothScroll.js +0 -69
- package/scripts/window.js +0 -28
- package/styles/dock.scss +0 -100
- package/styles/general.scss +0 -241
- package/styles/icons.scss +0 -33
- package/styles/input.scss +0 -35
- package/styles/messages.scss +0 -76
- package/styles/resize.scss +0 -99
- package/styles/root.scss +0 -14
- package/styles/scrollbar.scss +0 -24
- package/tests/setupJest.tsx +0 -4
- package/tsconfig.json +0 -69
- package/typings/cordova.d.ts +0 -12
- package/typings/dphelper.d.ts +0 -29
- package/typings/image.d.ts +0 -9
- package/typings/index.d.ts +0 -7
- package/typings/layerpro.d.ts +0 -23
- package/typings/menupro.d.ts +0 -18
- package/typings/namespace.d.ts +0 -7
- package/typings/styles.d.ts +0 -27
- package/typings/vscode.d.ts +0 -14724
- package/webpack.config.js +0 -239
package/package.json
CHANGED
|
@@ -1,140 +1,144 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
2
|
+
"name": "layerpro",
|
|
3
|
+
"version": "0.0.68",
|
|
4
|
+
"description": "Manage your popups and customize them",
|
|
5
|
+
"deprecated": false,
|
|
6
|
+
"appCode": "layerpro",
|
|
7
|
+
"appCodeRelease": "layerpro",
|
|
8
|
+
"appName": "layerpro",
|
|
9
|
+
"appType": "beta",
|
|
10
|
+
"appFolder": "/",
|
|
11
|
+
"appAPI": "api",
|
|
12
|
+
"apiDev": "",
|
|
13
|
+
"apiProd": "",
|
|
14
|
+
"main": "index.js",
|
|
15
|
+
"targets": {
|
|
16
|
+
"main": {
|
|
17
|
+
"includeNodeModules": {
|
|
18
|
+
"react": false,
|
|
19
|
+
"react-dom": false
|
|
20
|
+
},
|
|
21
|
+
"isLibrary": true
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"typing": [
|
|
25
|
+
"typings/images.d.ts",
|
|
26
|
+
"typings/index.d.ts",
|
|
27
|
+
"typings/layerpro.d.ts",
|
|
28
|
+
"typings/styles.d.ts"
|
|
29
|
+
],
|
|
30
|
+
"engines": {
|
|
31
|
+
"node": ">=4.0.0"
|
|
32
|
+
},
|
|
33
|
+
"scripts": {
|
|
34
|
+
"make-dist": "webpack --progress --color --mode production --config webpack.config.js",
|
|
35
|
+
"backup": "mcp/backup/run.bat",
|
|
36
|
+
"git": "cd mcp/node && node gitDeploy",
|
|
37
|
+
"git-tag": "cd mcp/node && node createTag",
|
|
38
|
+
"node:update": "cd mcp/node && node npmUpdate",
|
|
39
|
+
"goLive": "cd mcp/node && node goLive",
|
|
40
|
+
"test:lint": "eslint --ext .ts,.tsx,.js,.jsx --fix",
|
|
41
|
+
"test:cypress": "cypress open"
|
|
42
|
+
},
|
|
43
|
+
"eslintConfig": {
|
|
44
|
+
"globals": {
|
|
45
|
+
"window": true
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
"author": {
|
|
49
|
+
"name": "Dario Passariello",
|
|
50
|
+
"url": "https://github.com/passariello/",
|
|
51
|
+
"email": "dariopassariello@gmail.com"
|
|
52
|
+
},
|
|
53
|
+
"contributors": [
|
|
54
|
+
{
|
|
55
|
+
"name": "Valeria Cala' Scaglitta",
|
|
56
|
+
"email": "valeriacalascaglitta@gamil.com"
|
|
57
|
+
}
|
|
58
|
+
],
|
|
59
|
+
"keywords": [
|
|
60
|
+
"layer",
|
|
61
|
+
"popup",
|
|
62
|
+
"modal",
|
|
63
|
+
"passariello",
|
|
64
|
+
"layerpro"
|
|
65
|
+
],
|
|
66
|
+
"license": "MIT",
|
|
67
|
+
"homepage": "https://github.com/passariello/layerpro",
|
|
68
|
+
"funding": [
|
|
69
|
+
{
|
|
70
|
+
"type": "individual",
|
|
71
|
+
"url": "https://www.paypal.com/donate/?business=HC7LJ2ZXRRNDL&no_recurring=0&item_name=I+am+a+software+developer.+Just+a+donation+can+help+me+to+have+more+time+to+dedicate+on+this+project¤cy_code=CAD"
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"type": "patreon",
|
|
75
|
+
"url": "https://www.patreon.com/passariello"
|
|
76
|
+
}
|
|
77
|
+
],
|
|
78
|
+
"repository": {
|
|
79
|
+
"type": "git",
|
|
80
|
+
"url": "git+https://github.com/passariello/layerpro.git",
|
|
81
|
+
"help": "git+https://github.com/passariello/layerpro.git#readme"
|
|
82
|
+
},
|
|
83
|
+
"bugs": {
|
|
84
|
+
"url": "https://github.com/passariello/layerpro/issues"
|
|
85
|
+
},
|
|
86
|
+
"files": [
|
|
87
|
+
"scripts",
|
|
88
|
+
"index.js",
|
|
89
|
+
"init.js",
|
|
90
|
+
"types/**/*.d.ts"
|
|
91
|
+
],
|
|
92
|
+
"devDependencies": {
|
|
93
|
+
"@types/react": "18.0.17",
|
|
94
|
+
"@types/react-dom": "18.0.6",
|
|
95
|
+
"@typescript-eslint/eslint-plugin": "5.33.0",
|
|
96
|
+
"css-loader": "6.7.1",
|
|
97
|
+
"cypress": "10.4.0",
|
|
98
|
+
"eslint": "8.21.0",
|
|
99
|
+
"eslint-plugin-import": "2.26.0",
|
|
100
|
+
"eslint-plugin-node": "11.1.0",
|
|
101
|
+
"eslint-plugin-promise": "6.0.0",
|
|
102
|
+
"eslint-plugin-react": "7.30.1",
|
|
103
|
+
"eslint-plugin-unicorn": "43.0.2",
|
|
104
|
+
"file-loader": "6.2.0",
|
|
105
|
+
"less-loader": "11.0.0",
|
|
106
|
+
"sass-loader": "13.0.2",
|
|
107
|
+
"style-loader": "3.3.1",
|
|
108
|
+
"webpack-cli": "4.10.0"
|
|
109
|
+
},
|
|
110
|
+
"dependencies": {
|
|
111
|
+
"@babel/core": "7.18.10",
|
|
112
|
+
"@babel/plugin-proposal-class-properties": "7.18.6",
|
|
113
|
+
"@babel/plugin-transform-runtime": "7.18.10",
|
|
114
|
+
"@babel/preset-env": "7.18.10",
|
|
115
|
+
"@babel/preset-react": "7.18.6",
|
|
116
|
+
"@babel/preset-typescript": "7.18.6",
|
|
117
|
+
"@testing-library/user-event": "^14.4.3",
|
|
118
|
+
"@types/enzyme-adapter-react-16": "1.0.6",
|
|
119
|
+
"@typescript-eslint/parser": "5.33.0",
|
|
120
|
+
"babel-loader": "8.2.5",
|
|
121
|
+
"classnames": "2.3.1",
|
|
122
|
+
"cli-confirm": "1.0.1",
|
|
123
|
+
"compression-webpack-plugin": "10.0.0",
|
|
124
|
+
"concurrently": "7.3.0",
|
|
125
|
+
"copy-webpack-plugin": "11.0.0",
|
|
126
|
+
"css": "3.0.0",
|
|
127
|
+
"dotenv": "16.0.1",
|
|
128
|
+
"fs": "0.0.1-security",
|
|
129
|
+
"html-webpack-plugin": "5.5.0",
|
|
130
|
+
"jquery": "3.6.0",
|
|
131
|
+
"jsdom-worker": "0.2.1",
|
|
132
|
+
"jshint": "^2.13.5",
|
|
133
|
+
"less": "4.1.3",
|
|
134
|
+
"moment": "2.29.4",
|
|
135
|
+
"path": "0.12.7",
|
|
136
|
+
"progress-bar-webpack-plugin": "2.1.0",
|
|
137
|
+
"react": "18.2.0",
|
|
138
|
+
"react-dom": "18.2.0",
|
|
139
|
+
"sass": "1.54.4",
|
|
140
|
+
"terser-webpack-plugin": "5.3.3",
|
|
141
|
+
"typescript": "4.7.4",
|
|
142
|
+
"webpack": "5.74.0"
|
|
143
|
+
}
|
|
140
144
|
}
|
package/.editorconfig
DELETED
package/.env
DELETED
package/.eslintignore
DELETED
package/.eslintrc.json
DELETED
|
@@ -1,110 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"root": true,
|
|
3
|
-
"env": {
|
|
4
|
-
"browser": true,
|
|
5
|
-
"node": true,
|
|
6
|
-
"jest": true
|
|
7
|
-
},
|
|
8
|
-
"parser": "@typescript-eslint/parser",
|
|
9
|
-
"parserOptions": {
|
|
10
|
-
"ecmaVersion": "latest",
|
|
11
|
-
"sourceType": "module",
|
|
12
|
-
"parser": "babel-eslint",
|
|
13
|
-
"ecmaFeatures": {
|
|
14
|
-
"modules": true,
|
|
15
|
-
"impliedStrict": true,
|
|
16
|
-
"jsx": true,
|
|
17
|
-
"experimentalObjectRestSpread": true
|
|
18
|
-
}
|
|
19
|
-
},
|
|
20
|
-
"globals": {
|
|
21
|
-
"jQuery": true,
|
|
22
|
-
"$": true,
|
|
23
|
-
"dphelper": true,
|
|
24
|
-
"menupro": true,
|
|
25
|
-
"layerpro": true
|
|
26
|
-
},
|
|
27
|
-
"settings": {
|
|
28
|
-
"react": {
|
|
29
|
-
"version": "detect"
|
|
30
|
-
}
|
|
31
|
-
},
|
|
32
|
-
"plugins": [
|
|
33
|
-
"react",
|
|
34
|
-
"@typescript-eslint",
|
|
35
|
-
"import",
|
|
36
|
-
"node",
|
|
37
|
-
"promise",
|
|
38
|
-
"jest"
|
|
39
|
-
],
|
|
40
|
-
"extends": [
|
|
41
|
-
"eslint:recommended",
|
|
42
|
-
"plugin:react/recommended",
|
|
43
|
-
"plugin:@typescript-eslint/recommended",
|
|
44
|
-
"plugin:node/recommended",
|
|
45
|
-
"plugin:promise/recommended",
|
|
46
|
-
"plugin:jest/recommended"
|
|
47
|
-
],
|
|
48
|
-
"rules": {
|
|
49
|
-
"no-empty": 0,
|
|
50
|
-
"no-console": 0,
|
|
51
|
-
"no-process-exit": 0,
|
|
52
|
-
"@typescript-eslint/no-var-requires": 0,
|
|
53
|
-
"node/no-unsupported-features/es-syntax": 0,
|
|
54
|
-
"node/no-unsupported-features/node-builtins": 0,
|
|
55
|
-
"no-underscore-dangle": [
|
|
56
|
-
"off"
|
|
57
|
-
],
|
|
58
|
-
"no-plusplus": [
|
|
59
|
-
"warn",
|
|
60
|
-
{
|
|
61
|
-
"allowForLoopAfterthoughts": true
|
|
62
|
-
}
|
|
63
|
-
],
|
|
64
|
-
"no-param-reassign": [
|
|
65
|
-
"off"
|
|
66
|
-
],
|
|
67
|
-
"no-prototype-builtins": [
|
|
68
|
-
"off"
|
|
69
|
-
],
|
|
70
|
-
"no-unused-vars": [
|
|
71
|
-
"warn"
|
|
72
|
-
],
|
|
73
|
-
"unicorn/no-process-exit": 0,
|
|
74
|
-
"comma-dangle": 0,
|
|
75
|
-
"semi": [
|
|
76
|
-
"error",
|
|
77
|
-
"never"
|
|
78
|
-
],
|
|
79
|
-
"consistent-return": [
|
|
80
|
-
"off"
|
|
81
|
-
],
|
|
82
|
-
"max-nested-callbacks": [
|
|
83
|
-
"warn",
|
|
84
|
-
3
|
|
85
|
-
],
|
|
86
|
-
"import/no-mutable-exports": [
|
|
87
|
-
"warn"
|
|
88
|
-
],
|
|
89
|
-
"valid-jsdoc": [
|
|
90
|
-
"warn",
|
|
91
|
-
{
|
|
92
|
-
"prefer": {
|
|
93
|
-
"returns": "return",
|
|
94
|
-
"property": "prop"
|
|
95
|
-
},
|
|
96
|
-
"requireReturn": false
|
|
97
|
-
}
|
|
98
|
-
],
|
|
99
|
-
"operator-linebreak": [
|
|
100
|
-
"error",
|
|
101
|
-
"after",
|
|
102
|
-
{
|
|
103
|
-
"overrides": {
|
|
104
|
-
"?": "ignore",
|
|
105
|
-
":": "ignore"
|
|
106
|
-
}
|
|
107
|
-
}
|
|
108
|
-
]
|
|
109
|
-
}
|
|
110
|
-
}
|
package/.gitattributes
DELETED
package/.github/FUNDING.yml
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
# These are supported funding model platforms
|
|
2
|
-
|
|
3
|
-
github: passariello
|
|
4
|
-
patreon: passariello
|
|
5
|
-
open_collective: # Replace with a single Open Collective username
|
|
6
|
-
ko_fi: passariello
|
|
7
|
-
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
|
|
8
|
-
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
|
|
9
|
-
liberapay: passariello
|
|
10
|
-
issuehunt: passariello
|
|
11
|
-
otechie: # Replace with a single Otechie username
|
|
12
|
-
custom: ["https://dario.passariello.ca", "https://www.paypal.me/dariopassariello", "https://www.indiegogo.com/individuals/28513718"]
|
package/.github/dependabot.yml
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
# Basic dependabot.yml file with
|
|
2
|
-
# minimum configuration for two package managers
|
|
3
|
-
|
|
4
|
-
version: 2
|
|
5
|
-
updates:
|
|
6
|
-
# Enable version updates for npm
|
|
7
|
-
- package-ecosystem: "npm"
|
|
8
|
-
# Look for `package.json` and `lock` files in the `root` directory
|
|
9
|
-
directory: "/"
|
|
10
|
-
# Check the npm registry for updates every day (weekdays)
|
|
11
|
-
schedule:
|
|
12
|
-
interval: "daily"
|
package/.jsbeautifyrc
DELETED
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"js":
|
|
3
|
-
{
|
|
4
|
-
"allowed_file_extensions": ["js", "ts", "tsx", "jsx", "json", "jshintrc", "jsbeautifyrc"],
|
|
5
|
-
"brace_style": "collapse-preserve-inline",
|
|
6
|
-
"break_chained_methods": false,
|
|
7
|
-
"e4x": false,
|
|
8
|
-
"end_with_newline": true,
|
|
9
|
-
"indent_char": " ",
|
|
10
|
-
"indent_level": 0,
|
|
11
|
-
"indent_size": 2,
|
|
12
|
-
"indent_with_tabs": false,
|
|
13
|
-
"jslint_happy": true,
|
|
14
|
-
"keep_array_indentation": false,
|
|
15
|
-
"keep_function_indentation": false,
|
|
16
|
-
"max_preserve_newlines": 2,
|
|
17
|
-
"preserve_newlines": true,
|
|
18
|
-
"space_after_anon_function": false,
|
|
19
|
-
"space_before_conditional": true,
|
|
20
|
-
"space_in_empty_paren": false,
|
|
21
|
-
"space_in_paren": false,
|
|
22
|
-
"unescape_strings": false,
|
|
23
|
-
"wrap_line_length": 0
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
|
package/.prettierignore
DELETED
package/.prettierrc
DELETED
package/.vscode/launch.json
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"configurations": [
|
|
3
|
-
{
|
|
4
|
-
"type": "node",
|
|
5
|
-
"name": "vscode-jest-tests.v2",
|
|
6
|
-
"request": "launch",
|
|
7
|
-
"console": "integratedTerminal",
|
|
8
|
-
"internalConsoleOptions": "neverOpen",
|
|
9
|
-
"disableOptimisticBPs": true,
|
|
10
|
-
"program": "${workspaceFolder}\\node_modules\\react-scripts\\node_modules\\.bin\\jest",
|
|
11
|
-
"cwd": "${workspaceFolder}",
|
|
12
|
-
"args": [
|
|
13
|
-
"--runInBand",
|
|
14
|
-
"--watchAll=false",
|
|
15
|
-
"--testNamePattern",
|
|
16
|
-
"${jest.testNamePattern}",
|
|
17
|
-
"--runTestsByPath",
|
|
18
|
-
"${jest.testFile}"
|
|
19
|
-
]
|
|
20
|
-
}
|
|
21
|
-
]
|
|
22
|
-
}
|
package/.vscode/settings.json
DELETED
|
@@ -1,84 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"npm.exclude": [
|
|
3
|
-
"**/dist",
|
|
4
|
-
"dist"
|
|
5
|
-
],
|
|
6
|
-
"editor.hover.enabled": true,
|
|
7
|
-
"editor.hover.delay": 2000,
|
|
8
|
-
"editor.quickSuggestions": {},
|
|
9
|
-
"editor.quickSuggestionsDelay": 2000,
|
|
10
|
-
"editor.tabCompletion": "off",
|
|
11
|
-
"editor.renderWhitespace": "all",
|
|
12
|
-
"editor.acceptSuggestionOnEnter": "on",
|
|
13
|
-
"editor.defaultFormatter": null,
|
|
14
|
-
"editor.formatOnSave": true,
|
|
15
|
-
"editor.autoClosingBrackets": "always",
|
|
16
|
-
"editor.autoClosingOvertype": "always",
|
|
17
|
-
"editor.insertSpaces": true,
|
|
18
|
-
"editor.detectIndentation": false,
|
|
19
|
-
"editor.tabSize": 2,
|
|
20
|
-
"files.trimTrailingWhitespace": true,
|
|
21
|
-
"javascript.format.semicolons": "remove",
|
|
22
|
-
"typescript.format.semicolons": "remove",
|
|
23
|
-
"typescript.referencesCodeLens.enabled": true,
|
|
24
|
-
"typescript.suggestionActions.enabled": false,
|
|
25
|
-
"javascript.suggestionActions.enabled": false,
|
|
26
|
-
"explorer.compactFolders": false,
|
|
27
|
-
"[typescript]": {},
|
|
28
|
-
"[javascript]": {},
|
|
29
|
-
"[markdown]": {},
|
|
30
|
-
"[php]": {},
|
|
31
|
-
"[css]": {},
|
|
32
|
-
"[less]": {},
|
|
33
|
-
"[sass]": {},
|
|
34
|
-
"[js]": {},
|
|
35
|
-
"search.exclude": {
|
|
36
|
-
"out": true,
|
|
37
|
-
"node_modules/jest-editor-support/src": false,
|
|
38
|
-
".editorconfig": true,
|
|
39
|
-
"**/.cache": true,
|
|
40
|
-
"**/.DS_Store": true,
|
|
41
|
-
"**/.git": true,
|
|
42
|
-
"**/.svg": true,
|
|
43
|
-
"**/.xml": true,
|
|
44
|
-
"**/bower_components": true,
|
|
45
|
-
"**/node_*": true,
|
|
46
|
-
"**/node_modules": true,
|
|
47
|
-
"**/tmp": true,
|
|
48
|
-
"babel.config.js": true,
|
|
49
|
-
"jest.config.js": true,
|
|
50
|
-
"node_modules": true,
|
|
51
|
-
"package-lock.json": true,
|
|
52
|
-
},
|
|
53
|
-
"files.exclude": {
|
|
54
|
-
"out": true,
|
|
55
|
-
"node_modules/jest-editor-support/src": false,
|
|
56
|
-
"coverage/": true,
|
|
57
|
-
// ".vscode/": true,
|
|
58
|
-
// ".editorconfig": true,
|
|
59
|
-
// ".env": true,
|
|
60
|
-
// ".eslintignore": true,
|
|
61
|
-
// ".eslintrc.json": true,
|
|
62
|
-
// ".eslintrc.legacy.json": true,
|
|
63
|
-
// ".gitattributes": true,
|
|
64
|
-
// ".gitignore": true,
|
|
65
|
-
// ".hintrc": true,
|
|
66
|
-
// ".jsbeautifyrc": true,
|
|
67
|
-
// ".jshintrc": true,
|
|
68
|
-
// ".npmignore": true,
|
|
69
|
-
// ".npmrc": true,
|
|
70
|
-
// ".prettierignore": true,
|
|
71
|
-
// ".prettierrc.json": true,
|
|
72
|
-
// ".stylelintignore": true,
|
|
73
|
-
// ".stylelintrc.json": true,
|
|
74
|
-
// "babel.config.js": true,
|
|
75
|
-
// "jest.config.js": true,
|
|
76
|
-
// "package-lock.json": true,
|
|
77
|
-
// "node_modules/": true
|
|
78
|
-
},
|
|
79
|
-
"typescript.tsdk": "./node_modules/typescript/lib",
|
|
80
|
-
"eslint.enable": true,
|
|
81
|
-
"editor.codeActionsOnSave": {
|
|
82
|
-
"source.fixAll.eslint": true
|
|
83
|
-
}
|
|
84
|
-
}
|
package/.vscodeignore
DELETED
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
.vscode/**
|
|
2
|
-
.vscode-insiders/**
|
|
3
|
-
.vscode-test/**
|
|
4
|
-
src/**
|
|
5
|
-
**/*.map
|
|
6
|
-
.gitignore
|
|
7
|
-
tsconfig.json
|
|
8
|
-
**/__mocks__/**
|
|
9
|
-
**/tests/**
|
|
10
|
-
**/*.ts
|
|
11
|
-
**/tsconfig.json
|
|
12
|
-
jsconfig.json
|
|
13
|
-
jest.config.js
|
|
14
|
-
.eslintrc.js
|
|
15
|
-
**/.eslintrc.js
|
|
16
|
-
prettier.config.js
|
|
17
|
-
.travis.yml
|
|
18
|
-
yarn.lock
|
|
19
|
-
yarn-error.log
|
|
20
|
-
scripts/
|
|
21
|
-
coverage
|
|
22
|
-
.github/**
|
|
23
|
-
images/**
|
|
24
|
-
!images/vscode-jest.png
|
|
25
|
-
node_modules
|
|
26
|
-
webpack.config.js
|
|
27
|
-
generated-icons/
|
|
28
|
-
*.zip
|
package/__mocks__/fileMock.js
DELETED
package/__mocks__/styleMock.js
DELETED