deps: bump versions to latest
This commit is contained in:
parent
477ed68633
commit
fe5bf729e6
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"config": {
|
||||
"default": true,
|
||||
"MD013": false,
|
||||
"MD024": false,
|
||||
"MD026": false,
|
||||
"MD033": false,
|
||||
"MD034": false
|
||||
},
|
||||
"ignores": ["node_modules", "CHANGELOG.md", "README.md"]
|
||||
}
|
|
@ -1,10 +0,0 @@
|
|||
{
|
||||
"comment": "Hyas rules",
|
||||
|
||||
"default": true,
|
||||
"line_length": false,
|
||||
"no-inline-html": false,
|
||||
"no-trailing-punctuation": false,
|
||||
"no-duplicate-heading": false,
|
||||
"no-bare-urls": false
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
node_modules
|
||||
CHANGELOG.md
|
||||
README.md
|
|
@ -1,8 +1,22 @@
|
|||
{
|
||||
"extends": "stylelint-config-standard",
|
||||
"extends": "stylelint-config-standard-scss",
|
||||
"rules": {
|
||||
"no-empty-source": null,
|
||||
"string-quotes": "double",
|
||||
"scss/comment-no-empty": null,
|
||||
"max-line-length": null,
|
||||
"scss/at-extend-no-missing-placeholder": null,
|
||||
"scss/dollar-variable-colon-space-after": null,
|
||||
"scss/dollar-variable-empty-line-before": null,
|
||||
"color-function-notation": null,
|
||||
"alpha-value-notation": null,
|
||||
"selector-id-pattern": null,
|
||||
"selector-class-pattern": null,
|
||||
"scss/no-global-function-names": null,
|
||||
"number-max-precision": null,
|
||||
"hue-degree-notation": null,
|
||||
"value-no-vendor-prefix": null,
|
||||
"property-no-vendor-prefix": null,
|
||||
"at-rule-no-unknown": [
|
||||
true,
|
||||
{
|
||||
|
|
|
@ -3,8 +3,8 @@
|
|||
functions = "functions"
|
||||
|
||||
[build.environment]
|
||||
NODE_VERSION = "16.9.1"
|
||||
NPM_VERSION = "7.21.1"
|
||||
NODE_VERSION = "16.13.1"
|
||||
NPM_VERSION = "8.1.2"
|
||||
|
||||
[context.production]
|
||||
command = "npm run build"
|
||||
|
|
File diff suppressed because it is too large
Load Diff
39
package.json
39
package.json
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "doks-child-theme",
|
||||
"description": "Doks child theme",
|
||||
"version": "0.3.5",
|
||||
"version": "0.4.0",
|
||||
"browserslist": [
|
||||
"defaults"
|
||||
],
|
||||
|
@ -23,7 +23,8 @@
|
|||
"lint": "npm run -s lint:scripts && npm run -s lint:styles && npm run -s lint:markdown",
|
||||
"lint:scripts": "eslint assets/js config functions",
|
||||
"lint:styles": "stylelint \"assets/scss/**/*.{css,sass,scss,sss,less}\"",
|
||||
"lint:markdown": "markdownlint \"*.md\" \"content/**/*.md\"",
|
||||
"lint:markdown": "markdownlint-cli2 \"*.md\" \"content/**/*.md\"",
|
||||
"lint:markdown-fix": "markdownlint-cli2-fix \"*.md\" \"content/**/*.md\"",
|
||||
"server": "exec-bin node_modules/.bin/hugo/hugo server",
|
||||
"test": "npm run -s lint",
|
||||
"env": "env",
|
||||
|
@ -34,33 +35,33 @@
|
|||
"version": "auto-changelog -p && git add CHANGELOG.md"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/cli": "^7.15",
|
||||
"@babel/core": "^7.15",
|
||||
"@babel/preset-env": "^7.15",
|
||||
"@fullhuman/postcss-purgecss": "^4.0",
|
||||
"@hyas/doks": "^0.3",
|
||||
"auto-changelog": "^2.3.0",
|
||||
"autoprefixer": "^10.3",
|
||||
"@babel/cli": "^7.17",
|
||||
"@babel/core": "^7.17",
|
||||
"@babel/preset-env": "^7.16",
|
||||
"@fullhuman/postcss-purgecss": "^4.1",
|
||||
"@hyas/doks": "^0.4",
|
||||
"auto-changelog": "^2.4.0",
|
||||
"autoprefixer": "^10.4",
|
||||
"bootstrap": "^5.1",
|
||||
"clipboard": "^2.0",
|
||||
"eslint": "^7.32",
|
||||
"eslint": "^8.8",
|
||||
"exec-bin": "^1.0.0",
|
||||
"hugo-installer": "^3.1",
|
||||
"flexsearch": "^0.7.21",
|
||||
"highlight.js": "^11.2",
|
||||
"highlight.js": "^11.4",
|
||||
"instant.page": "^5.1",
|
||||
"katex": "^0.13",
|
||||
"katex": "^0.15",
|
||||
"lazysizes": "^5.3",
|
||||
"markdownlint-cli": "^0.29",
|
||||
"markdownlint-cli2": "^0.4.0",
|
||||
"mermaid": "^8.13",
|
||||
"postcss": "^8.3",
|
||||
"postcss-cli": "^9.0",
|
||||
"postcss": "^8.4",
|
||||
"postcss-cli": "^9.1",
|
||||
"purgecss-whitelister": "^2.4",
|
||||
"shx": "^0.3.3",
|
||||
"stylelint": "^13.13",
|
||||
"stylelint-config-standard": "^22.0"
|
||||
"shx": "^0.3",
|
||||
"stylelint": "^14.3",
|
||||
"stylelint-config-standard-scss": "^3.0"
|
||||
},
|
||||
"otherDependencies": {
|
||||
"hugo": "0.88.1"
|
||||
"hugo": "0.92.1"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue