Skip to content

Commit

Permalink
v6.1.0 - initial fork release
Browse files Browse the repository at this point in the history
  • Loading branch information
balupton committed Nov 1, 2023
1 parent b10ba98 commit f5bb3c3
Show file tree
Hide file tree
Showing 24 changed files with 5,464 additions and 699 deletions.
20 changes: 17 additions & 3 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,12 +1,26 @@
# 2023 June 22
# https://github.com/bevry/base

root = true

[*]
indent_style = tab
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
insert_final_newline = false
indent_style = tab

[{*.mk,*.py}]
indent_style = tab
indent_size = 4

[*.md]
indent_style = space
indent_size = 4

[*.yml]
[{*.json,*.lsrules,*.yaml,*.yml,*.bowerrc,*.babelrc,*.code-workspace}]
indent_style = space
indent_size = 2

[{*.json,*.lsrules}]
insert_final_newline = true
1 change: 0 additions & 1 deletion .gitattributes

This file was deleted.

7 changes: 7 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
version: 2
updates:
- package-ecosystem: npm
directory: /
schedule:
interval: weekly
day: sunday
10 changes: 6 additions & 4 deletions .github/funding.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
github: sindresorhus
open_collective: sindresorhus
tidelift: npm/figures
custom: https://sindresorhus.com/donate
github: [balupton]
patreon: bevry
open_collective: bevry
ko_fi: balupton
liberapay: bevry
custom: ['https://bevry.me/fund']
11 changes: 11 additions & 0 deletions .github/workflows/automerge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: automerge
'on':
- pull_request
jobs:
automerge:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ahmadnassri/action-dependabot-auto-merge@v2
with:
github-token: ${{ secrets.DEPENDABOT_AUTOMERGE_GITHUB_TOKEN }}
68 changes: 68 additions & 0 deletions .github/workflows/bevry.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
name: bevry
'on':
- push
- pull_request
jobs:
test:
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
node:
- '0.8'
- '0.10'
- '0.12'
- '4'
- '6'
- '8'
- '10'
- '12'
- '14'
- '16'
- '18'
- '20'
- '21'
runs-on: ${{ matrix.os }}
continue-on-error: >-
${{ contains('0.8 0.10 0.12 4 6', matrix.node) || contains('macos-latest
windows-latest', matrix.os) }}
steps:
- uses: actions/checkout@v2
- name: Install desired Node.js version
uses: actions/setup-node@v2
with:
node-version: '20'
- run: npm run our:setup
- run: npm run our:compile
- run: npm run our:verify
- name: Install targeted Node.js
if: ${{ matrix.node != 20 }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- run: npm test
publish:
if: ${{ github.event_name == 'push' }}
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install desired Node.js version
uses: actions/setup-node@v2
with:
node-version: '20'
- run: npm run our:setup
- run: npm run our:compile
- run: npm run our:meta
- name: publish to npm
uses: bevry-actions/npm@v1.1.0
with:
npmAuthToken: ${{ secrets.NPM_AUTH_TOKEN }}
npmBranchTag: ':next'
- name: publish to surge
uses: bevry-actions/surge@v1.0.3
with:
surgeLogin: ${{ secrets.SURGE_LOGIN }}
surgeToken: ${{ secrets.SURGE_TOKEN }}
59 changes: 57 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,57 @@
node_modules
yarn.lock
# 2020 June 3
# https://github.com/bevry/base

# System Files
**/.DS_Store

# Temp Files
**/.docpad.db
**/*.log
**/*.cpuprofile
**/*.heapsnapshot

# Editor Files
.c9/
.vscode/

# Yarn Files
.yarn/*
!.yarn/releases
!.yarn/plugins
!.yarn/sdks
!.yarn/versions
.pnp.*
.pnp/

# Private Files
.env
.idea
.cake_task_cache

# Build Caches
build/
bower_components/
node_modules/
.next/

# -------------------------------------
# CDN Inclusions, Git Exclusions

# Build Outputs
**/out.*
**/*.out.*
**/out/
**/output/
*compiled*
edition*/
coffeejs/
coffee/
es5/
es2015/
esnext/
docs/

# =====================================
# CUSTOM

.now
67 changes: 67 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
# 2020 May 5
# https://github.com/bevry/base

# System Files
**/.DS_Store

# Temp Files
**/.docpad.db
**/*.log
**/*.cpuprofile
**/*.heapsnapshot

# Editor Files
.c9/
.vscode/

# Private Files
.env
.idea
.cake_task_cache

# Build Caches
build/
components/
bower_components/
node_modules/
.pnp/
.pnp.js

# Ecosystem Files
.dependabout
.github

# -------------------------------------
# CDN Inclusions, Package Exclusions

# Documentation Files
docs/
guides/
BACKERS.md
CONTRIBUTING.md
HISTORY.md

# Development Files
web/
**/example*
**/test*
.babelrc*
.editorconfig
.eslintrc*
.jshintrc
.jscrc
coffeelint*
.travis*
nakefile*
Cakefile
Makefile

# Other Package Definitions
template.js
component.json
bower.json

# =====================================
# CUSTOM

# None
1 change: 0 additions & 1 deletion .npmrc

This file was deleted.

57 changes: 57 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
# 2023 March 24
# https://github.com/bevry/base

# VCS Files
.git
.svn
.hg

# System Files
**/.DS_Store

# Temp Files
**/.docpad.db
**/*.log
**/*.cpuprofile
**/*.heapsnapshot

# Yarn Files
.yarn/*
!.yarn/releases
!.yarn/plugins
!.yarn/sdks
!.yarn/versions
.pnp.*
.pnp/

# Build Caches
build/
components/
bower_components/
node_modules/

# Build Outputs
**/out.*
**/*.out.*
**/out/
**/output/
*compiled*
edition*/
coffeejs/
coffee/
es5/
es2015/
esnext/
docs/

# Development Files
test/
**/*fixtures*

# Ecosystem Caches
.trunk/*/

# =====================================
# CUSTOM

# None

0 comments on commit f5bb3c3

Please sign in to comment.