Skip to content

Commit 9ab5176

Browse files
authored
Merge pull request #8 from bennypowers/rocket
wip: initial commit for rocket
2 parents d8be1fb + d853522 commit 9ab5176

Some content is hidden

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

75 files changed

+39361
-315
lines changed

.DS_Store

-8 KB
Binary file not shown.

.eleventyignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
node_modules/**
2+
/docs/_assets
3+
/docs/_includes
4+
/docs/_data

.github/workflows/main.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Build and Deploy
2+
3+
on:
4+
push:
5+
branches:
6+
- master # Only on master now
7+
8+
jobs:
9+
build-and-deploy:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout 🛎️
13+
uses: actions/checkout@v2
14+
15+
- name: Setup PNPM
16+
uses: pnpm/action-setup@master
17+
with:
18+
version: latest
19+
20+
- name: Install and Build 🔧
21+
run: |
22+
pnpm install
23+
pnpm run build
24+
25+
- name: Deploy 🚀
26+
uses: JamesIves/[email protected]
27+
with:
28+
branch: gh-pages # The branch the action should deploy to.
29+
folder: _site # The folder the action should deploy.

.gitignore

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
1-
_site
21
.sass-cache
32
.jekyll-metadata
43
.DS_Store
54
vendor/bundle
5+
node_modules
6+
package-lock.json
7+
8+
## Rocket ignore files (need to be the full relative path to the folders)
9+
_site-dev
10+
_site
11+
docs/_merged_data/
12+
docs/_merged_assets/
13+
docs/_merged_includes/

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
public-hoist-pattern[]=*

404.html

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

Gemfile

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

Gemfile.lock

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

_config.yml

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

_includes/footer.html

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

0 commit comments

Comments
 (0)