@budarin/pluggable-serviceworker 1.0.9 → 1.0.10

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@budarin/pluggable-serviceworker",
3
- "version": "1.0.9",
3
+ "version": "1.0.10",
4
4
  "description": "Extensible via plugins service worker",
5
5
  "keywords": [
6
6
  "serviceworker",
@@ -1,26 +0,0 @@
1
- {
2
- "recommendations": [
3
- // "codeium.codeium",
4
- "dbaeumer.vscode-eslint",
5
- "esbenp.prettier-vscode",
6
- "stylelint.vscode-stylelint",
7
- "dsznajder.es7-react-js-snippets",
8
- "ecmel.vscode-html-css",
9
- "vitest.explorer",
10
- "vscode-icons-team.vscode-icons",
11
- "wayou.vscode-todo-highlight",
12
- "felixfbecker.css-stacking-contexts",
13
- // "formulahendry.auto-rename-tag",
14
- "mhutchie.git-graph",
15
- "ms-azuretools.vscode-docker",
16
- "ms-playwright.playwrigh",
17
- "naumovs.color-highlight",
18
- "planbcoding.vscode-react-refactor",
19
- "svetlanakost.typograf",
20
- "viktorzetterstrom.non-breaking-space-highlighter",
21
- "wallabyjs.wallaby-vscode",
22
- "yoavbls.pretty-ts-errors",
23
- "donjayamanne.githistory",
24
- "pranaygp.vscode-css-peek"
25
- ]
26
- }
@@ -1,20 +0,0 @@
1
- {
2
- // Use IntelliSense to learn about possible attributes.
3
- // Hover to view descriptions of existing attributes.
4
- // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5
- "version": "0.2.0",
6
- "configurations": [
7
- {
8
- "type": "node",
9
- "request": "launch",
10
- "name": "Launch Program",
11
- "skipFiles": [
12
- "<node_internals>/**"
13
- ],
14
- "program": "${workspaceFolder}\\src\\sw\\helpers\\handleFetch\\index.ts",
15
- "outFiles": [
16
- "${workspaceFolder}/**/*.js"
17
- ]
18
- }
19
- ]
20
- }
@@ -1,164 +0,0 @@
1
- {
2
- // explorer
3
- "explorer.autoReveal": true,
4
- "explorer.incrementalNaming": "smart",
5
- "debug.openExplorerOnEnd": true,
6
-
7
- // editor
8
- "editor.fontLigatures": true,
9
- "editor.mouseWheelZoom": true,
10
- "editor.smoothScrolling": true,
11
- "editor.cursorSmoothCaretAnimation": "on",
12
- "editor.minimap.enabled": false,
13
- "editor.defaultFormatter": "esbenp.prettier-vscode",
14
- "editor.formatOnSave": true,
15
- "editor.formatOnPaste": true,
16
- "editor.language.colorizedBracketPairs": [
17
- [
18
- "(",
19
- ")"
20
- ],
21
- [
22
- "[",
23
- "]"
24
- ],
25
- [
26
- "{",
27
- "}"
28
- ]
29
- ],
30
- "editor.suggestSelection": "first",
31
- "editor.codeActionsOnSave": {
32
- "source.fixAll": "explicit",
33
- "source.organizeImports": "never"
34
- },
35
- "editor.guides.bracketPairs": true,
36
- "editor.guides.highlightActiveBracketPair": false,
37
- "editor.fontFamily": "Consolas, Monaco, Menlo,'Courier New', monospace",
38
-
39
- // files
40
- "files.autoSave": "onFocusChange",
41
- "files.insertFinalNewline": true,
42
- "files.trimFinalNewlines": true,
43
- "files.trimTrailingWhitespace": true,
44
- "files.eol": "\n",
45
-
46
- // git
47
- "git.enableSmartCommit": true,
48
- "git.confirmSync": false,
49
- "git.autofetch": true,
50
- "git.autofetchPeriod": 60,
51
- // "git.branchProtection": ["master"],
52
- "git.checkoutType": [
53
- "local",
54
- "remote"
55
- ],
56
- "git.ignoreRebaseWarning": true,
57
- "git.inputValidationSubjectLength": 100,
58
- "git.inputValidationLength": 200,
59
-
60
- // ts/javascript
61
- // "typescript.surveys.enabled": false,
62
- "javascript.suggestionActions.enabled": false,
63
- "typescript.tsdk": "./node_modules/typescript/lib",
64
- "typescript.updateImportsOnFileMove.enabled": "always",
65
- "typescript.preferences.importModuleSpecifier": "shortest",
66
- "javascript.updateImportsOnFileMove.enabled": "always",
67
- "typescript.format.semicolons": "insert",
68
- "javascript.format.semicolons": "insert",
69
-
70
- // prettier
71
- "prettier.enable": true,
72
- "json.format.enable": true,
73
- "prettier.configPath": ".prettierrc.mjs",
74
- "prettier.experimentalTernaries": true,
75
- "prettier.enableDebugLogs": true,
76
- "prettier.prettierPath": "./node_modules/prettier",
77
- "prettier.htmlWhitespaceSensitivity": "strict",
78
- "[json]": {
79
- "editor.formatOnSave": true
80
- },
81
- "[css]": {
82
- "editor.formatOnSave": true,
83
- "editor.defaultFormatter": "vscode.css-language-features"
84
- },
85
- "[html]": {
86
- "editor.formatOnSave": true,
87
- "editor.defaultFormatter": "vscode.html-language-features"
88
- },
89
- "[jsonc]": {
90
- "editor.defaultFormatter": "esbenp.prettier-vscode"
91
- },
92
- "[xml]": {
93
- "editor.defaultFormatter": "esbenp.prettier-vscode"
94
- },
95
- "[svg]": {
96
- "editor.defaultFormatter": "esbenp.prettier-vscode"
97
- },
98
- "[typescriptreact]": {
99
- "editor.defaultFormatter": "esbenp.prettier-vscode"
100
- },
101
- "[typescript]": {
102
- "editor.defaultFormatter": "esbenp.prettier-vscode"
103
- },
104
- "[javascript]": {
105
- "editor.defaultFormatter": "esbenp.prettier-vscode"
106
- },
107
- "[javascriptreact]": {
108
- "editor.defaultFormatter": "esbenp.prettier-vscode"
109
- },
110
- "[markdown]": {
111
- "editor.defaultFormatter": "esbenp.prettier-vscode"
112
- },
113
-
114
- // workbench
115
- "workbench.iconTheme": "vscode-icons",
116
- "workbench.colorTheme": "Default Dark+",
117
- "workbench.externalBrowser": "chrome",
118
- "workbench.colorCustomizations": {},
119
-
120
- // terminal
121
- "terminal.integrated.defaultProfile.windows": "Git Bash",
122
- "terminal.integrated.cursorBlinking": true,
123
- "terminal.integrated.fontFamily": "Consolas, 'Courier New', monospace",
124
- "terminal.integrated.minimumContrastRatio": 4.5,
125
- "terminal.integrated.smoothScrolling": true,
126
- "terminal.integrated.profiles.windows": {
127
- "Bash": {
128
- "path": "C:\\Program Files\\Git\\bin\\bash.exe",
129
- "args": []
130
- }
131
- },
132
- "terminal.integrated.scrollback": 500000,
133
- "terminal.integrated.enablePersistentSessions": false,
134
- "workbench.tree.enableStickyScroll": false,
135
- "editor.stickyScroll.scrollWithEditor": false,
136
- "editor.stickyScroll.enabled": false,
137
- "accessibility.signals.terminalBell": {
138
- "sound": "on"
139
- },
140
- "terminal.integrated.enableVisualBell": true,
141
-
142
- // npm scripts
143
- "npm.scriptExplorerAction": "run",
144
-
145
- // emmet
146
- "emmet.includeLanguages": {
147
- "postcss": "css",
148
- "javascript": "javascriptreact",
149
- "typescript": "typescriptreact"
150
- },
151
- "emmet.showSuggestionsAsSnippets": true,
152
-
153
- "notebook.defaultFormatter": "esbenp.prettier-vscode",
154
- "window.zoomLevel": 0,
155
-
156
- // extensions
157
- "reactSnippets.settings.prettierEnabled": true,
158
-
159
- "stylelint.configBasedir": "./",
160
- "stylelint.configFile": "./stylelint.config.mjs",
161
- "stylelint.packageManager": "pnpm",
162
-
163
- "javascript.preferences.importModuleSpecifier": "non-relative",
164
- }