Skip to content

Commit 90e1dcc

Browse files
authored
Merge pull request #8 from kethinov/0.23.2
0.23.2
2 parents 74a2cd7 + c1810dc commit 90e1dcc

File tree

8 files changed

+15
-12
lines changed

8 files changed

+15
-12
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.npm-cache

my-roosevelt-sample-app/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ npm-debug.log*
7575
yarn-debug.log*
7676
yarn-error.log*
7777
lerna-debug.log*
78+
.npm-cache
7879

7980
# Diagnostic reports (https://nodejs.org/api/report.html)
8081
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

my-roosevelt-sample-app/.stylelintrc.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
2-
"customSyntax": "postcss-less",
3-
"extends": "stylelint-config-standard",
2+
"extends": "stylelint-config-standard-scss",
43
"rules": {
54
"selector-id-pattern": null,
65
"selector-class-pattern": null,

my-roosevelt-sample-app/mvc/views/layouts/main.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
<meta name="viewport" content="width=device-width,initial-scale=1">
66
<meta name="format-detection" content="telephone=no">
77
<title>{content.titleTag}</title>
8+
<meta name="description" content="Describe your website here">
9+
<link rel="preload" href="/css/styles.css" as="style">
10+
<link rel="preload" href="/js/main.js" as="script">
811
<link rel="stylesheet" href="/css/styles.css">
912
<script src="/js/main.js" defer></script>
1013
</head>

my-roosevelt-sample-app/package.json

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,20 @@
1010
"node": ">=18.0.0"
1111
},
1212
"dependencies": {
13-
"roosevelt": "~0.22.0",
13+
"roosevelt": "~0.23.0",
1414
"teddy": "~0.6.0",
15-
"less": "~4.2.0"
15+
"sass": "~1.83.0"
1616
},
1717
"devDependencies": {
1818
"nodemon": "~3.1.0",
1919
"standard": "~17.1.0",
2020
"eslint-plugin-html": "~8.1.0",
21-
"stylelint": "~16.6.0",
22-
"postcss-less": "~6.0.0",
23-
"stylelint-config-standard": "~36.0.0"
21+
"stylelint": "~16.13.0",
22+
"stylelint-config-standard-scss": "~14.0.0"
2423
},
2524
"nodemonConfig": {
2625
"ignore": ["public/"],
27-
"ext": "less html js json"
26+
"ext": "scss html js json"
2827
},
2928
"private": true,
3029
"repository": {
@@ -49,7 +48,7 @@
4948
"production-proxy": "nodemon app.js --production-proxy-mode",
5049
"standard": "./node_modules/.bin/standard",
5150
"start": "nodemon app.js --production-mode",
52-
"stylelint": "./node_modules/.bin/stylelint \"statics/css/**/*.less\"",
51+
"stylelint": "./node_modules/.bin/stylelint \"statics/css/**/*.scss\"",
5352
"test": "npm run lint"
5453
}
5554
}

my-roosevelt-sample-app/rooseveltConfig.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"port": 53573,
2+
"port": 36411,
33
"makeBuildArtifacts": true,
44
"https": {
55
"enable": true,
6-
"port": 53573,
6+
"port": 36411,
77
"force": true,
88
"authInfoPath": {
99
"authCertAndKey": {
@@ -21,7 +21,7 @@
2121
"sourcePath": "css",
2222
"compiler": {
2323
"enable": true,
24-
"module": "less",
24+
"module": "sass",
2525
"options": {}
2626
},
2727
"output": "css",
-54 Bytes
Loading

0 commit comments

Comments
 (0)