Fix small error

pull/3698/head
Daniel 2021-05-11 04:53:06 +05:30
parent 0c1b79e627
commit 0a36e8fa00
3 changed files with 14 additions and 15 deletions

View File

@ -1,6 +1,5 @@
@import "layout/brand"; @import "layout/brand";
@import "layout/content-wrapper"; @import "layout/content-wrapper";
@import "layout/content";
@import "layout/layout-fixed"; @import "layout/layout-fixed";
@import "layout/main-footer"; @import "layout/main-footer";
@import "layout/main-header"; @import "layout/main-header";

20
package-lock.json generated
View File

@ -2285,9 +2285,9 @@
} }
}, },
"eslint-plugin-unicorn": { "eslint-plugin-unicorn": {
"version": "32.0.0", "version": "32.0.1",
"resolved": "https://registry.npmjs.org/eslint-plugin-unicorn/-/eslint-plugin-unicorn-32.0.0.tgz", "resolved": "https://registry.npmjs.org/eslint-plugin-unicorn/-/eslint-plugin-unicorn-32.0.1.tgz",
"integrity": "sha512-VYE/XvZvdcY0RvOKGxsrVVWo8DaI/tGVYuhKzSd6Uuy69Ydc8zX+roZ/H9PgyykM4nuj8JDoOHSwVk9a4OYbCQ==", "integrity": "sha512-LaZ9utnXtOJjnoDkpm+nQsONUUmyRR0WD6PGROSdQRRW3LRmgK/ZP8wxjW+Ai+2uolKTtuJzLx2mvbIeIoLqpg==",
"dev": true, "dev": true,
"requires": { "requires": {
"ci-info": "^3.1.1", "ci-info": "^3.1.1",
@ -3901,9 +3901,9 @@
"dev": true "dev": true
}, },
"nanoid": { "nanoid": {
"version": "3.1.22", "version": "3.1.23",
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.1.22.tgz", "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.1.23.tgz",
"integrity": "sha512-/2ZUaJX2ANuLtTvqTlgqBQNJoQO398KyJgZloL0PZkC0dpysjncRUPsFe3DUPzz/y3h+u7C46np8RMuvF3jsSQ==", "integrity": "sha512-FiB0kzdP0FFVGDKlRLEQ1BgDzU87dy5NnzjeW9YZNt+/c3+q82EQDUwniSAUxp/F0gFNI1ZhKU1FqYsMuqZVnw==",
"dev": true "dev": true
}, },
"natural-compare": { "natural-compare": {
@ -4522,13 +4522,13 @@
} }
}, },
"postcss": { "postcss": {
"version": "8.2.14", "version": "8.2.15",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.2.14.tgz", "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.2.15.tgz",
"integrity": "sha512-+jD0ZijcvyCqPQo/m/CW0UcARpdFylq04of+Q7RKX6f/Tu+dvpUI/9Sp81+i6/vJThnOBX09Quw0ZLOVwpzX3w==", "integrity": "sha512-2zO3b26eJD/8rb106Qu2o7Qgg52ND5HPjcyQiK2B98O388h43A448LCslC0dI2P97wCAQRJsFvwTRcXxTKds+Q==",
"dev": true, "dev": true,
"requires": { "requires": {
"colorette": "^1.2.2", "colorette": "^1.2.2",
"nanoid": "^3.1.22", "nanoid": "^3.1.23",
"source-map": "^0.6.1" "source-map": "^0.6.1"
} }
}, },

View File

@ -33,8 +33,8 @@
"compile": "npm-run-all --parallel css js", "compile": "npm-run-all --parallel css js",
"sync": "browser-sync start --server --files *.html pages/ dist/", "sync": "browser-sync start --server --files *.html pages/ dist/",
"watch": "concurrently \"npm:watch-*\"", "watch": "concurrently \"npm:watch-*\"",
"watch-css": "nodemon --watch build/scss -e scss -x \"npm-run-all css-lint css\"", "watch-css": "nodemon --watch build/scss -e scss -x \"npm-run-all css-compile css-prefix\"",
"watch-js": "nodemon --watch build/ts -e ts -x \"npm-run-all js-lint js\"" "watch-js": "nodemon --watch build/ts -e ts -x \"npm-run-all js-compile\""
}, },
"keywords": [ "keywords": [
"css", "css",
@ -76,11 +76,11 @@
"eslint-config-xo": "^0.36.0", "eslint-config-xo": "^0.36.0",
"eslint-config-xo-typescript": "^0.41.1", "eslint-config-xo-typescript": "^0.41.1",
"eslint-plugin-import": "^2.22.1", "eslint-plugin-import": "^2.22.1",
"eslint-plugin-unicorn": "^32.0.0", "eslint-plugin-unicorn": "^32.0.1",
"lockfile-lint": "^4.6.2", "lockfile-lint": "^4.6.2",
"nodemon": "^2.0.7", "nodemon": "^2.0.7",
"npm-run-all": "^4.1.5", "npm-run-all": "^4.1.5",
"postcss": "^8.2.14", "postcss": "^8.2.15",
"postcss-cli": "^8.3.1", "postcss-cli": "^8.3.1",
"rtlcss": "^3.1.2", "rtlcss": "^3.1.2",
"sass": "^1.32.12", "sass": "^1.32.12",