Skip to content

Commit e9472da

Browse files
feat!: migrate from gulp to astro
1 parent 00ca6b0 commit e9472da

File tree

111 files changed

+6201
-9079
lines changed

Some content is hidden

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

111 files changed

+6201
-9079
lines changed

.babelrc

Lines changed: 0 additions & 5 deletions
This file was deleted.

.gitignore

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1-
node_modules
2-
dist
3-
build
1+
# build output
2+
dist/
3+
.output/
4+
*.zip
5+
6+
# dependencies
7+
node_modules/
8+
9+
# logs
10+
npm-debug.log*
11+
yarn-debug.log*
12+
yarn-error.log*
13+
pnpm-debug.log*
14+
15+
16+
# environment variables
17+
.env
18+
.env.production
19+
20+
# macOS-specific files
21+
.DS_Store

.vscode/extensions.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"recommendations": ["astro-build.astro-vscode"],
3+
"unwantedRecommendations": []
4+
}

.vscode/launch.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"command": "./node_modules/.bin/astro dev",
6+
"name": "Development server",
7+
"request": "launch",
8+
"type": "node-terminal"
9+
}
10+
]
11+
}

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"astro.typescript.enabled": false
3+
}

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,11 @@ Fresh is built with [Bulma](https://bulma.io) and [Alpine JS](https://github.com
1212

1313
## 👍 Features
1414

15-
* Gulp 4 and nodejs 12.13.0 (minimum)
16-
* Bulma 0.9.3
15+
* Astro v1.x
16+
* Nodejs v16.x
17+
* Bulma v0.9.x
1718
* ES6 support
18-
* Alpine v3
19+
* Alpine v3.x
1920

2021
## 👌 Usage
2122

astro.config.mjs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
import { defineConfig } from 'astro/config';
2+
3+
// https://astro.build/config
4+
export default defineConfig({});

config.js

Lines changed: 0 additions & 26 deletions
This file was deleted.

gulpfile.js

Lines changed: 0 additions & 178 deletions
This file was deleted.

package.json

Lines changed: 25 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -2,51 +2,40 @@
22
"name": "fresh",
33
"version": "4.1.0",
44
"description": "Fresh - Bulma + Alpine JS landing page",
5+
"type": "module",
6+
"private": true,
57
"author": {
68
"name": "cssninjaStudio <[email protected]> (https://cssninja.io)"
79
},
10+
"license": "SEE LICENSE IN LICENSE.md",
811
"scripts": {
9-
"dev": "gulp",
10-
"build": "gulp build",
11-
"build:update-bulma-colors": "bulma-css-vars"
12+
"dev": "astro dev",
13+
"start": "astro dev",
14+
"build": "run-s build:*",
15+
"build:astro": "astro build",
16+
"preview": "astro preview",
17+
"astro": "astro"
1218
},
13-
"type": "module",
14-
"license": "SEE LICENSE IN LICENSE.md",
1519
"dependencies": {
16-
"@alpinejs/collapse": "3.10.4",
17-
"@alpinejs/intersect": "3.10.4",
18-
"@alpinejs/persist": "3.10.4",
19-
"alpinejs": "3.10.4",
20+
"@alpinejs/collapse": "3.10.5",
21+
"@alpinejs/intersect": "3.10.5",
22+
"@alpinejs/persist": "3.10.5",
23+
"@iconify/iconify": "3.0.1",
24+
"alpinejs": "3.7.1",
25+
"astro": "1.7.1",
2026
"bulma": "0.9.4",
21-
"js-datepicker": "5.16.0",
22-
"notyf": "3.9.0",
23-
"feather-icons": "4.24.0",
24-
"plyr": "3.5.6",
25-
"postcss": "8.3.0",
27+
"bulma-css-vars": "0.7.0",
28+
"fuse.js": "6.5.3",
29+
"js-datepicker": "5.18.2",
30+
"lozad": "1.16.0",
31+
"moment": "2.29.1",
32+
"notyf": "3.10.0",
33+
"plyr": "3.7.3",
34+
"sass": "1.57.0",
2635
"simplebar": "5.3.9"
2736
},
2837
"devDependencies": {
29-
"@babel/cli": "7.16.0",
30-
"@babel/core": "7.16.0",
31-
"@babel/preset-env": "7.16.4",
32-
"@babel/register": "7.16.0",
33-
"autoprefixer": "10.4.0",
34-
"babelify": "10.0.0",
35-
"browser-sync": "2.27.10",
36-
"browserify": "17.0.0",
37-
"del": "6.0.0",
38-
"gulp": "4.0.2",
39-
"gulp-autoprefixer": "8.0.0",
40-
"gulp-concat": "2.6.1",
41-
"gulp-postcss": "9.0.1",
42-
"gulp-replace": "1.1.3",
43-
"gulp-sass": "5.1.0",
44-
"gulp-sourcemaps": "3.0.0",
45-
"gulp-webp": "4.0.1",
46-
"log-symbols": "4.0.0",
47-
"node-bourbon": "4.2.8",
48-
"panini": "1.7.2",
49-
"sass": "1.39.2",
50-
"vinyl-source-stream": "2.0.0"
38+
"autoprefixer": "10.4.13",
39+
"npm-run-all": "4.1.5"
5140
}
5241
}

0 commit comments

Comments
 (0)