Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit1dde004

Browse files
committed
updated node version and other packages
1 parent1f940ee commit1dde004

23 files changed

+31849
-18140
lines changed

‎.babelrc.js‎

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
11
module.exports={
22
presets:[
33
[
4-
'@babel/env',
4+
'@babel/preset-env',
55
{
66
loose:true,
77
modules:false,
8-
exclude:['transform-typeof-symbol']
8+
exclude:['transform-typeof-symbol'],
9+
targets:"> 0.25%, not dead"
910
}
1011
]
11-
],
12-
plugins:[
13-
process.env.PLUGINS&&'transform-es2015-modules-strip',
14-
'@babel/proposal-object-rest-spread'
15-
].filter(Boolean)
12+
]
1613
};

‎.eslintrc.json‎

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,12 @@
66
"es6":true
77
},
88
"extends":"eslint:recommended",
9-
"plugins": ["compat"],
109
"rules": {
1110
// Possible Errors
1211
"no-await-in-loop":"error",
1312
"no-extra-parens":"error",
1413
"no-prototype-builtins":"error",
1514
"no-template-curly-in-string":"error",
16-
"compat/compat":"error",
1715
"valid-jsdoc":"error",
1816

1917
// Best Practices

‎.nvmrc‎

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

‎.stylelintrc‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
2-
"extends": ["stylelint-config-standard", "stylelint-config-recommended-scss"],
3-
"plugins": [
4-
"stylelint-order"
5-
],
2+
"extends": ["stylelint-config-standard-scss"],
3+
"plugins": ["stylelint-scss", "stylelint-order"],
64
"rules": {
75
"at-rule-empty-line-before": [null,
86
"except": ["first-nested"]
97
],
108
"at-rule-name-space-after": "always",
119
"at-rule-no-vendor-prefix": true,
10+
"at-rule-no-unknown": null,
11+
"scss/at-rule-no-unknown": true,
1212
"at-rule-semicolon-space-before": "never",
1313
"block-closing-brace-empty-line-before": null,
1414
"block-closing-brace-newline-after": null,

‎Dockerfile‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ WORKDIR /srv/jekyll
1111

1212
RUN chown jekyll:jekyll -R . && bundle install
1313

14-
COPY . /srv/jekyll
14+
COPY . /srv/jekyll
1515

1616

1717

1818
RUN chmod 777 -R . && ls -aFl \
1919
&& sed -i's|^url:.*|url: "${{JEKYLL_URL}}"|' _config.yml \
20-
&& sed -i's|^baseurl:.*|baseurl: "${{MY_JEKYLL_BASEURL}}"|' _config.yml
20+
&& sed -i's|^baseurl:.*|baseurl: "${{MY_JEKYLL_BASEURL}}"|' _config.yml
2121

2222

2323
CMD chmod 777 -R . && jekyll serve --watch --incremental

‎README.md‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ The site is automatically deployed when commits are merged/pushed in `master`, h
1616

1717
To compile scss files into css run the command`npm run css` or in the live mode`npm run watch-css`.
1818
To compile js files into a bundle run the command`npm run js` or in the live mode`npm run watch-js`.
19-
Node version`9.11.2`
2019

2120
###Preview documentation locally (Legacy method)
2221

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp