Dependency updates
This commit is contained in:
parent
26e907bd81
commit
4e8276ab05
File diff suppressed because it is too large
Load Diff
43
package.json
43
package.json
|
@ -42,7 +42,7 @@
|
|||
},
|
||||
"homepage": "https://github.com/digitalocean/nginxconfig.io#readme",
|
||||
"dependencies": {
|
||||
"clipboard": "^2.0.8",
|
||||
"clipboard": "^2.0.10",
|
||||
"clone": "^2.1.2",
|
||||
"do-bulma": "git+https://github.com/do-community/do-bulma.git",
|
||||
"do-vue": "git+https://github.com/do-community/do-vue.git",
|
||||
|
@ -51,35 +51,36 @@
|
|||
"json-to-pretty-yaml": "^1.2.2",
|
||||
"memory-tar-create": "0.0.3",
|
||||
"pretty-checkbox-vue": "^1.1.9",
|
||||
"prismjs": "^1.25.0",
|
||||
"qs": "^6.10.1",
|
||||
"prismjs": "^1.26.0",
|
||||
"qs": "^6.10.3",
|
||||
"simple-js-sha2-256": "^1.0.7",
|
||||
"vue": "^2.6.12",
|
||||
"vue-i18n": "^8.24.4",
|
||||
"vue-select": "^3.11.2",
|
||||
"webpack-require-from": "^1.8.4"
|
||||
"vue": "^2.6.14",
|
||||
"vue-i18n": "^8.27.0",
|
||||
"vue-select": "^3.16.0",
|
||||
"webpack-require-from": "^1.8.6"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/plugin-proposal-class-properties": "^7.13.0",
|
||||
"@babel/plugin-transform-runtime": "^7.14.3",
|
||||
"@babel/preset-env": "^7.14.2",
|
||||
"@babel/runtime": "^7.14.0",
|
||||
"@vue/cli-service": "^5.0.0-beta.1",
|
||||
"@babel/plugin-proposal-class-properties": "^7.16.7",
|
||||
"@babel/plugin-transform-runtime": "^7.17.0",
|
||||
"@babel/preset-env": "^7.16.11",
|
||||
"@babel/runtime": "^7.17.0",
|
||||
"@vue/cli-service": "^5.0.0-rc.2",
|
||||
"ajv": "^8.9.0",
|
||||
"babel-eslint": "^10.1.0",
|
||||
"chalk": "^4.1.1",
|
||||
"chalk": "^5.0.0",
|
||||
"copyfiles": "^2.4.1",
|
||||
"core-js": "^3.12.1",
|
||||
"core-js": "^3.21.0",
|
||||
"duplicate-package-checker-webpack-plugin": "^3.0.0",
|
||||
"eslint": "^7.26.0",
|
||||
"eslint-plugin-vue": "^7.9.0",
|
||||
"eslint": "^8.8.0",
|
||||
"eslint-plugin-vue": "^8.4.1",
|
||||
"esm": "^3.2.25",
|
||||
"jest": "^26.6.3",
|
||||
"jest": "^27.4.7",
|
||||
"node-fetch": "^2.6.7",
|
||||
"postcss": "^8.2.15",
|
||||
"sass": "^1.32.13",
|
||||
"postcss": "^8.4.6",
|
||||
"sass": "^1.49.7",
|
||||
"sass-lint": "git+https://github.com/do-community/sass-lint.git",
|
||||
"sass-loader": "^11.1.1",
|
||||
"vue-template-compiler": "^2.6.12",
|
||||
"webpack-bundle-analyzer": "^4.4.2"
|
||||
"vue-template-compiler": "^2.6.14",
|
||||
"webpack-bundle-analyzer": "^4.5.0"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
Copyright 2021 DigitalOcean
|
||||
Copyright 2022 DigitalOcean
|
||||
|
||||
This code is licensed under the MIT License.
|
||||
You may obtain a copy of the License at
|
||||
|
@ -35,10 +35,6 @@ const main = () => {
|
|||
// Inject our title now
|
||||
template = template.replace('<block name="title"><title>DigitalOcean</title></block>', '<title>NGINXConfig | DigitalOcean</title>');
|
||||
|
||||
// We don't need the head/script blocks, vue-cli-service handles those
|
||||
template = template.replace('<block name="head"></block>', '');
|
||||
template = template.replace('<block name="script"></block>', '');
|
||||
|
||||
// Inject our app mounting point
|
||||
template = template.replace('<block name="content"></block>', '<div id="app"></div>');
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
Copyright 2021 DigitalOcean
|
||||
Copyright 2022 DigitalOcean
|
||||
|
||||
This code is licensed under the MIT License.
|
||||
You may obtain a copy of the License at
|
||||
|
@ -214,7 +214,7 @@ THE SOFTWARE.
|
|||
|
||||
color: $dark-grey;
|
||||
font-size: 14px;
|
||||
padding-left: calc(#{$margin / 2} + 1.5em);
|
||||
padding-left: calc(#{$margin * .5} + 1.5em);
|
||||
text-indent: initial;
|
||||
|
||||
&::before,
|
||||
|
|
Loading…
Reference in New Issue