node dep. solve babel version conflict. one scss issue
This commit is contained in:
parent
0950f10e58
commit
fc36e01004
19
README.md
19
README.md
|
@ -4,6 +4,25 @@ FoundationPress relies to not-up-to-date dependencies, works with node.js ~6, us
|
|||
|
||||
$ n 6
|
||||
|
||||
install gulp
|
||||
|
||||
$ sudo npm -g install gulp
|
||||
|
||||
install node modules
|
||||
|
||||
$ npm install
|
||||
|
||||
it there is a problem with babel versions, like
|
||||
|
||||
`
|
||||
babel-loader@8 requires Babel 7.x (the package '@babel/core'). If you'd like to use Babel 6.x ('babel-core'), you should install 'babel-loader@7'.
|
||||
`
|
||||
|
||||
try...
|
||||
|
||||
$ npm install --save-dev babel-loader@7
|
||||
|
||||
|
||||
keep dependencies updated
|
||||
|
||||
$ ncu
|
||||
|
|
|
@ -27,13 +27,13 @@
|
|||
"dependencies": {
|
||||
"foundation-sites": "6.5.3",
|
||||
"jquery": "~3.3.1",
|
||||
"what-input": "^5.1.2",
|
||||
"motion-ui": "~2.0.3"
|
||||
"motion-ui": "~2.0.3",
|
||||
"what-input": "^5.1.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"ansi-colors": "^3.2.1",
|
||||
"babel-core": "^6.26.3",
|
||||
"babel-loader": "^8.0.5",
|
||||
"babel-loader": "^7.1.5",
|
||||
"babel-preset-es2015": "^6.3.13",
|
||||
"babel-register": "^6.7.2",
|
||||
"browser-sync": "^2.10.0",
|
||||
|
|
|
@ -79,6 +79,5 @@
|
|||
|
||||
// Templates
|
||||
@import "templates/front";
|
||||
@import "templates/kitchen-sink";
|
||||
@import "templates/freifunk";
|
||||
@import "templates/freifunk-all-in-one-event-calendar";
|
||||
|
|
|
@ -61,7 +61,7 @@ $freifunk-color-blue: rgb(0,158,224);
|
|||
padding: 0 0 0 0;
|
||||
}
|
||||
.timely {
|
||||
font-family: hk_groteskmedium,, inherit"Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||
font-family: 'hk_groteskmedium', "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||
font-size: 15px;
|
||||
}
|
||||
.timely .ai1ec-btn {
|
||||
|
|
Loading…
Reference in a new issue