Skip to content

Commit 366ac64

Browse files
feat!: migrate from gulp to astro
1 parent 1c45fb1 commit 366ac64

File tree

179 files changed

+7331
-10993
lines changed

Some content is hidden

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

179 files changed

+7331
-10993
lines changed

.babelrc

-5
This file was deleted.

.gitignore

+21-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,21 @@
1-
node_modules
2-
dist
3-
build
4-
*.log
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

+4
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

+11
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

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

README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,9 @@ Fresh is built with [Bulma](https://bulma.io) and [Alpine JS](https://github.com
1313

1414
## 👍 Features
1515

16-
* Gulp 4 and node 16 (minimum)
17-
* Bulma 0.9.x
16+
* Astro v1.x
17+
* Node v16.x
18+
* Bulma v0.9.x
1819
* ES6 support
1920
* Alpine v3.x
2021

astro.config.mjs

+4
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

-26
This file was deleted.

gulpfile.js

-205
This file was deleted.

package.json

+26-37
Original file line numberDiff line numberDiff line change
@@ -2,52 +2,41 @@
22
"name": "krypton",
33
"version": "4.1.2",
44
"description": "Krypton - Bulma + Alpine JS ICO/Crypto Starter",
5+
"type": "module",
6+
"private": true,
57
"author": {
68
"name": "cssninjaStudio <hello@cssninja.io> (https://cssninja.io)"
79
},
10+
"license": "MIT",
811
"scripts": {
9-
"dev": "gulp",
10-
"build": "gulp build"
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"
1118
},
12-
"type": "module",
13-
"license": "SEE LICENSE IN LICENSE.md",
1419
"dependencies": {
15-
"@alpinejs/collapse": "3.10.4",
16-
"@alpinejs/intersect": "3.10.4",
17-
"@alpinejs/persist": "3.10.4",
18-
"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",
1926
"bulma": "0.9.4",
20-
"aos": "3.0.0-beta.6",
21-
"feather-icons": "4.28.0",
22-
"js-datepicker": "5.18.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",
2332
"notyf": "3.10.0",
24-
"plyr": "3.6.9",
25-
"postcss": "8.3.11",
26-
"simplebar": "5.3.3"
33+
"particles.js": "2.0.0",
34+
"plyr": "3.7.3",
35+
"sass": "1.57.0",
36+
"simplebar": "5.3.9"
2737
},
2838
"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-imagemin": "8.0.0",
42-
"gulp-purgecss": "4.0.3",
43-
"gulp-replace": "1.1.3",
44-
"gulp-sass": "5.0.0",
45-
"gulp-sourcemaps": "3.0.0",
46-
"gulp-uglify": "3.0.2",
47-
"gulp-webp": "4.0.1",
48-
"log-symbols": "5.0.0",
49-
"panini": "1.7.2",
50-
"sass": "1.43.4",
51-
"vinyl-source-stream": "2.0.0"
39+
"autoprefixer": "10.4.13",
40+
"npm-run-all": "4.1.5"
5241
}
5342
}

0 commit comments

Comments
 (0)