Browse Source

Fix small error

pull/3698/head
Daniel 4 years ago
parent
commit
0a36e8fa00
  1. 1
      build/scss/_layout.scss
  2. 20
      package-lock.json
  3. 8
      package.json

1
build/scss/_layout.scss

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

20
package-lock.json generated

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

8
package.json

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

Loading…
Cancel
Save