Skip to content

Commit

Permalink
No issue - updating outdated packages (#63)
Browse files Browse the repository at this point in the history
* No issue - updating outdated packages

* No issue - fixed stylint errors

* No issue - udpate node version for CI Job

* No issue - fix escape for grid
  • Loading branch information
Manvel authored Dec 30, 2023
1 parent e31aa13 commit bbc349b
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 21 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: 12.x
uses: actions/setup-node@v4
- run: npm i
- run: npm test
env:
Expand Down
5 changes: 1 addition & 4 deletions .stylelintrc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
{
"extends": "stylelint-config-recommended",
"rules": {
"block-closing-brace-newline-after": "always"
}
"extends": "stylelint-config-recommended"
}
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "cmints-starter-single-lang",
"name": "cba-website",
"version": "1.0.0",
"description": "Single language website starter for CMintS",
"main": "index.js",
Expand All @@ -15,23 +15,23 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/Manvel/cmints-single-lang-boilerplate.git"
"url": "git+https://github.com/browser-automation/cba-website.git"
},
"author": "Manvel Saroyan",
"license": "MIT",
"bugs": {
"url": "https://github.com/Manvel/cmints-single-lang-boilerplate/issues"
"url": "https://github.com/browser-automation/cba-website/issues"
},
"dependencies": {
"cmints": "^1.2.2",
"cmints": "^1.2.3",
"markdown-it-imsize": "^2.0.1",
"minimist": "^1.2.5"
"minimist": "^1.2.8"
},
"devDependencies": {
"eslint": "^6.8.0",
"prettier": "^2.1.2",
"prettylint": "^1.0.0",
"stylelint": "^13.3.1",
"stylelint-config-recommended": "^3.0.0"
"eslint": "^8.56.0",
"prettier": "^3.1.1",
"prettylint": "^2.0.0",
"stylelint": "^16.1.0",
"stylelint-config-recommended": "^14.0.0"
}
}
4 changes: 2 additions & 2 deletions theme/less/_navigation.less
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// The main navigation menu
/* The main navigation menu */

#main-navigation
{
Expand Down Expand Up @@ -127,7 +127,7 @@
content: url('/images/icons/arrow-bullet-dark.png');
}

// Mobile navigation menu
/* Mobile navigation menu */

#mobile-nav
{
Expand Down
2 changes: 1 addition & 1 deletion theme/less/_variables.less
Original file line number Diff line number Diff line change
@@ -1 +1 @@
// Variables
/* Variables */
2 changes: 1 addition & 1 deletion theme/less/homepage.less
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ article > *

main article > *:first-child
{
grid-column: 1 e("/") 3;
grid-column: ~"1 / 3";
}

.box
Expand Down

0 comments on commit bbc349b

Please sign in to comment.