Skip to content

Commit 093149b

Browse files
author
cssninja
authored
Merge pull request #24 from cssninjaStudio/fresh-dev
Fresh dev (4.0.0) to master
2 parents 811787f + 4ab589c commit 093149b

File tree

251 files changed

+15557
-11300
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

251 files changed

+15557
-11300
lines changed

β€Ž.babelrc

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
{
2-
"presets": ["env"]
2+
"presets": [
3+
"@babel/preset-env"
4+
]
35
}

β€Ž.gitignore

+3-51
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,3 @@
1-
# Windows image file caches
2-
Thumbs.db
3-
ehthumbs.db
4-
5-
# Folder config file
6-
Desktop.ini
7-
8-
# Recycle Bin used on file shares
9-
$RECYCLE.BIN/
10-
11-
# Windows Installer files
12-
*.cab
13-
*.msi
14-
*.msm
15-
*.msp
16-
17-
# Windows shortcuts
18-
*.lnk
19-
20-
# Icon must end with two \r
21-
Icon
22-
23-
# Thumbnails
24-
._*
25-
26-
# Files that might appear on external disk
27-
.Spotlight-V100
28-
.Trashes
29-
30-
# Directories potentially created on remote AFP share
31-
Network Trash Folder
32-
Temporary Items
33-
.apdisk
34-
35-
36-
### Sass ###
37-
.sass-cache/
38-
*.css.map
39-
40-
### JS maps ###
41-
*.js.map
42-
43-
### Node modules ###
44-
node_modules/
45-
46-
### Edito files ###
47-
.editorconfig
48-
49-
### Custom Files ###
50-
dist/
51-
accessibility-reports/
1+
node_modules
2+
dist
3+
build

β€Ž.htmllintrc

-23
This file was deleted.

β€Ž.jshintrc

-96
This file was deleted.

β€Ž.scss-lint.yml

-102
This file was deleted.

β€ŽREADME.md

+12-5
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,26 @@ You can access the demo [here](https://cssninjastudio.github.io/fresh/).
99

1010
Fresh is developed with the [Bulma css framework](https://bulma.io)
1111

12-
**Version 3.0.0**
12+
**Version 4.0.0**
1313

1414
## Usage
15-
Fresh is now a Bulma starter fully bundled with **npm** and **gulp**. Bulma has been upgraded to the latest version **0.8.0**.
15+
Fresh is now a Bulma starter fully bundled with **npm** and **gulp**. Bulma has been upgraded to the latest version **0.9.1**. jQuery support has been dropped and replaced with [Alpine JS](https://github.com/alpinejs/alpine) and [Spruce JS](https://github.com/ryangjchandler/spruce).
1616

1717
* Clone or download the repo
1818
* Run `npm install`
19-
* Run `gulp dev`
20-
21-
Most of the dependencies have been sanitized. However, **Panini** will keep throwing 2 npm warnings (low and moderatem, since Panini is only used during development, that shouldn't be a problem). We already got in touch with Zurb / Foundation to have this problem solved.
19+
* Run `npm run dev`
2220

2321
## Changelog
2422

23+
**Fresh 4.0**
24+
* Upgraded to gulp 4 and nodejs 12.13.0
25+
* Upgraded Bulma to 0.9.1
26+
* Added ES6 support
27+
* Removed jQuery support and related dependencies
28+
* Improved CSS build process
29+
* Integrated Alpine JS
30+
* Integrated Spruce JS
31+
2532
**Fresh 3.0**
2633
* Upgraded to gulp 4 and nodejs 10.15.3
2734
* Upgraded Bulma to 0.8.0

β€Žconfig.js

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
module.exports = {
2+
config: {
3+
port: 9050
4+
},
5+
paths: {
6+
root: "./",
7+
src: {
8+
base: "./src",
9+
css: "./src/css",
10+
js: "./src/js",
11+
img: "./src/img"
12+
},
13+
dist: {
14+
base: "./dist",
15+
css: "./dist/css",
16+
js: "./dist/js",
17+
img: "./dist/img"
18+
},
19+
build: {
20+
base: "./build",
21+
css: "./build/css",
22+
js: "./build/js",
23+
img: "./build/img"
24+
}
25+
}
26+
}

β€Ždebug.log

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[1129/113133.419:ERROR:directory_reader_win.cc(43)] FindFirstFile: The system cannot find the path specified. (0x3)
2+
[1220/235610.433:ERROR:directory_reader_win.cc(43)] FindFirstFile: The system cannot find the path specified. (0x3)

β€Ždocs/assets/css/app.css

-2
This file was deleted.

β€Ždocs/assets/css/bulma.css

-3
This file was deleted.

β€Ždocs/assets/css/core.css

-3
This file was deleted.
-65.1 KB
Binary file not shown.

β€Ždocs/assets/fonts/fontello.woff

-9.37 KB
Binary file not shown.
-45.4 KB
Binary file not shown.

β€Ždocs/assets/js/app.js

-36
This file was deleted.

0 commit comments

Comments
Β (0)