Skip to content

Commit 34747a4

Browse files
committed
version bumps
1 parent c1cee13 commit 34747a4

File tree

15 files changed

+4650
-4069
lines changed

15 files changed

+4650
-4069
lines changed

.browserslistrc

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
1-
> 1%
2-
last 2 versions
3-
not ie <= 8
1+
defaults and > 0.25%
2+
not safari < 12

.editorconfig

Lines changed: 0 additions & 5 deletions
This file was deleted.

.eslintignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

.eslintrc.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,11 @@ module.exports = {
33
env: {
44
node: true
55
},
6-
'extends': [
6+
extends: [
77
'plugin:vue/recommended',
8-
'@vue/standard'
8+
// this config loads eslint:recommended...
9+
// then chains to eslint-config-prettier and eslint-config-prettier/vue
10+
'@vue/prettier/recommended'
911
],
1012
rules: {
1113
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',

.gitignore

Lines changed: 18 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,21 @@
1-
# Editor and OS directories and files
2-
.idea
3-
**/.DS_Store
1+
.DS_Store
2+
node_modules
3+
/dist
4+
dist/
5+
6+
# local env files
7+
.env.local
8+
.env.*.local
49

510
# Log files
6-
node_modules/
7-
**/yarn-debug.log
8-
**/yarn-error.log
11+
npm-debug.log*
12+
yarn-debug.log*
13+
yarn-error.log*
914

10-
# build directories
11-
dist/
15+
# Editor directories and files
16+
.idea
17+
*.suo
18+
*.ntvs*
19+
*.njsproj
20+
*.sln
21+
*.sw?

.prettierrc.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = {
2+
printWidth: 100,
3+
semi: false,
4+
singleQuote: true
5+
}

.stylelintrc.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
module.exports = {
2+
extends: 'stylelint-config-standard',
3+
rules: {
4+
'block-no-empty': null,
5+
'at-rule-no-unknown': [
6+
true,
7+
{
8+
ignoreAtRules: ['tailwind', 'apply', 'variants', 'responsive', 'screen']
9+
}
10+
],
11+
'declaration-block-trailing-semicolon': null,
12+
'no-descending-specificity': null
13+
}
14+
}

.vscode/settings.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"editor.wordWrap": "on",
3+
"editor.tabSize": 2,
4+
"editor.insertSpaces": true,
5+
"editor.detectIndentation": false,
6+
"git.enableSmartCommit": true,
7+
"git.autofetch": true,
8+
"git.confirmSync": false,
9+
"cSpell.enabled": true,
10+
"cSpell.language": "en-GB",
11+
"cSpell.ignorePaths": [
12+
".vscode/settings.json",
13+
"package.json"
14+
],
15+
"explorer.confirmDragAndDrop": false,
16+
"workbench.colorTheme": "Monokai GRS",
17+
"editor.formatOnSave": true,
18+
"editor.formatOnType": false,
19+
"css.validate": false,
20+
"less.validate": false,
21+
"scss.validate": false,
22+
"eslint.alwaysShowStatus": true,
23+
"eslint.packageManager": "yarn",
24+
"editor.codeActionsOnSave": {
25+
"source.fixAll": true
26+
},
27+
"vetur.validation.template": false
28+
}

docs/.vuepress/config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ module.exports = {
77
['link', {
88
rel: 'stylesheet',
99
type: 'text/css',
10-
href: 'https://api.tiles.mapbox.com/mapbox-gl-js/v1.5.0/mapbox-gl.css'
10+
href: 'https://api.tiles.mapbox.com/mapbox-gl-js/v1.12.0/mapbox-gl.css'
1111
}],
1212
['script', {
13-
src: 'https://api.tiles.mapbox.com/mapbox-gl-js/v1.5.0/mapbox-gl.js'
13+
src: 'https://api.tiles.mapbox.com/mapbox-gl-js/v1.12.0/mapbox-gl.js'
1414
}]
1515
],
1616
markdown: {

docs/.vuepress/public/test.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
<!-- vue -->
1111
<script src='https://cdn.jsdelivr.net/npm/vue@latest/dist/vue.js'></script>
1212
<!-- mapbox -->
13-
<link rel='stylesheet' type='text/css' href='https://api.tiles.mapbox.com/mapbox-gl-js/v1.5.0/mapbox-gl.css'/>
14-
<script src='https://api.tiles.mapbox.com/mapbox-gl-js/v1.5.0/mapbox-gl.js'></script>
13+
<link rel='stylesheet' type='text/css' href='https://api.tiles.mapbox.com/mapbox-gl-js/v1.12.0/mapbox-gl.css'/>
14+
<script src='https://api.tiles.mapbox.com/mapbox-gl-js/v1.12.0/mapbox-gl.js'></script>
1515
<!-- VueMapboxMap -->
1616
<script src='https://unpkg.com/vue-mapbox-map@latest/dist/VueMapboxMap.umd.js'></script>
1717
<!-- vue-mapbox-feature -->

0 commit comments

Comments
 (0)