Skip to content

Commit

Permalink
feat!: migrate from gulp to astro
Browse files Browse the repository at this point in the history
  • Loading branch information
stafyniaksacha committed Jan 6, 2023
1 parent 00ca6b0 commit e9472da
Show file tree
Hide file tree
Showing 111 changed files with 6,201 additions and 9,079 deletions.
5 changes: 0 additions & 5 deletions .babelrc

This file was deleted.

24 changes: 21 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
node_modules
dist
build
# build output
dist/
.output/
*.zip

# dependencies
node_modules/

# logs
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*


# environment variables
.env
.env.production

# macOS-specific files
.DS_Store
4 changes: 4 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"recommendations": ["astro-build.astro-vscode"],
"unwantedRecommendations": []
}
11 changes: 11 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"version": "0.2.0",
"configurations": [
{
"command": "./node_modules/.bin/astro dev",
"name": "Development server",
"request": "launch",
"type": "node-terminal"
}
]
}
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"astro.typescript.enabled": false
}
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,11 @@ Fresh is built with [Bulma](https://bulma.io) and [Alpine JS](https://github.com

## 👍 Features

* Gulp 4 and nodejs 12.13.0 (minimum)
* Bulma 0.9.3
* Astro v1.x
* Nodejs v16.x
* Bulma v0.9.x
* ES6 support
* Alpine v3
* Alpine v3.x

## 👌 Usage

Expand Down
4 changes: 4 additions & 0 deletions astro.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { defineConfig } from 'astro/config';

// https://astro.build/config
export default defineConfig({});
26 changes: 0 additions & 26 deletions config.js

This file was deleted.

178 changes: 0 additions & 178 deletions gulpfile.js

This file was deleted.

61 changes: 25 additions & 36 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,51 +2,40 @@
"name": "fresh",
"version": "4.1.0",
"description": "Fresh - Bulma + Alpine JS landing page",
"type": "module",
"private": true,
"author": {
"name": "cssninjaStudio <hello@cssninja.io> (https://cssninja.io)"
},
"license": "SEE LICENSE IN LICENSE.md",
"scripts": {
"dev": "gulp",
"build": "gulp build",
"build:update-bulma-colors": "bulma-css-vars"
"dev": "astro dev",
"start": "astro dev",
"build": "run-s build:*",
"build:astro": "astro build",
"preview": "astro preview",
"astro": "astro"
},
"type": "module",
"license": "SEE LICENSE IN LICENSE.md",
"dependencies": {
"@alpinejs/collapse": "3.10.4",
"@alpinejs/intersect": "3.10.4",
"@alpinejs/persist": "3.10.4",
"alpinejs": "3.10.4",
"@alpinejs/collapse": "3.10.5",
"@alpinejs/intersect": "3.10.5",
"@alpinejs/persist": "3.10.5",
"@iconify/iconify": "3.0.1",
"alpinejs": "3.7.1",
"astro": "1.7.1",
"bulma": "0.9.4",
"js-datepicker": "5.16.0",
"notyf": "3.9.0",
"feather-icons": "4.24.0",
"plyr": "3.5.6",
"postcss": "8.3.0",
"bulma-css-vars": "0.7.0",
"fuse.js": "6.5.3",
"js-datepicker": "5.18.2",
"lozad": "1.16.0",
"moment": "2.29.1",
"notyf": "3.10.0",
"plyr": "3.7.3",
"sass": "1.57.0",
"simplebar": "5.3.9"
},
"devDependencies": {
"@babel/cli": "7.16.0",
"@babel/core": "7.16.0",
"@babel/preset-env": "7.16.4",
"@babel/register": "7.16.0",
"autoprefixer": "10.4.0",
"babelify": "10.0.0",
"browser-sync": "2.27.10",
"browserify": "17.0.0",
"del": "6.0.0",
"gulp": "4.0.2",
"gulp-autoprefixer": "8.0.0",
"gulp-concat": "2.6.1",
"gulp-postcss": "9.0.1",
"gulp-replace": "1.1.3",
"gulp-sass": "5.1.0",
"gulp-sourcemaps": "3.0.0",
"gulp-webp": "4.0.1",
"log-symbols": "4.0.0",
"node-bourbon": "4.2.8",
"panini": "1.7.2",
"sass": "1.39.2",
"vinyl-source-stream": "2.0.0"
"autoprefixer": "10.4.13",
"npm-run-all": "4.1.5"
}
}
Loading

0 comments on commit e9472da

Please sign in to comment.