Skip to content

Commit 1e338c3

Browse files
committed
re-generate commons
1 parent c5cd0b9 commit 1e338c3

File tree

5 files changed

+130
-24
lines changed

5 files changed

+130
-24
lines changed

.github/FUNDING.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
44
patreon: # Replace with a single Patreon username
55
open_collective: # Replace with a single Open Collective username
6-
ko_fi: ilegeul # Replace with a single Ko-fi username
6+
ko_fi: ilegeul
77
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
88
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
99
liberapay: # Replace with a single Liberapay username

.github/workflows/publish-github-pages.yml

+19-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,26 @@
1+
# -----------------------------------------------------------------------------
12
# DO NOT EDIT!
2-
# Automatically generated from npm-packages-helper/templates
3+
# Automatically generated from npm-packages-helper/templates/*.
4+
#
5+
# This file is part of the xPack project (http://xpack.github.io).
6+
# Copyright (c) 2021 Liviu Ionescu. All rights reserved.
7+
#
8+
# Permission to use, copy, modify, and/or distribute this software
9+
# for any purpose is hereby granted, under the terms of the MIT license.
10+
#
11+
# If a copy of the license was not distributed with this file, it can
12+
# be obtained from https://opensource.org/licenses/mit/.
13+
#
14+
# -----------------------------------------------------------------------------
315

416
# Simple workflow for deploying static content to GitHub Pages
517
name: GitHub Pages
618

19+
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows
720
on:
821
# Runs on pushes, if all conditions are met:
922
push:
10-
# ... on the website branch ...
23+
# ... on the `website` branch ...
1124
branches:
1225
- 'website'
1326
# ... skip tags only ...
@@ -39,10 +52,11 @@ concurrency:
3952

4053
jobs:
4154
# Single deploy job since we're just deploying
55+
# https://docs.github.com/en/actions/using-github-hosted-runners/using-github-hosted-runners/about-github-hosted-runners#standard-github-hosted-runners-for-public-repositories
4256
deploy:
4357
environment:
4458
name: github-pages
45-
url: ${{ steps.deployment.outputs.page_url }}
59+
url: ${{steps.deployment.outputs.page_url}}
4660
runs-on: ubuntu-24.04
4761

4862
steps:
@@ -60,10 +74,10 @@ jobs:
6074
node-version: 20
6175

6276
- name: Install dependencies
63-
run: cd website && npm install
77+
run: npm ci -C website
6478

6579
- name: Build the Docusaurus site
66-
run: cd website && npm run build
80+
run: npm run build -C website
6781

6882
- name: Setup Pages
6983
# https://github.com/actions/configure-pages

.github/workflows/test-ci.yml

+16-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
1+
# -----------------------------------------------------------------------------
12
# DO NOT EDIT!
2-
# Automatically generated from npm-packages-helper/templates
3+
# Automatically generated from npm-packages-helper/templates/*.
4+
#
5+
# This file is part of the xPack project (http://xpack.github.io).
6+
# Copyright (c) 2021 Liviu Ionescu. All rights reserved.
7+
#
8+
# Permission to use, copy, modify, and/or distribute this software
9+
# for any purpose is hereby granted, under the terms of the MIT license.
10+
#
11+
# If a copy of the license was not distributed with this file, it can
12+
# be obtained from https://opensource.org/licenses/mit/.
13+
#
14+
# -----------------------------------------------------------------------------
315

416
# https://help.github.com/en/actions
517
# https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions
@@ -40,7 +52,7 @@ jobs:
4052
# https://docs.github.com/en/actions/using-github-hosted-runners/using-github-hosted-runners/about-github-hosted-runners
4153
os: [ubuntu-24.04, macos-13, macos-14, windows-2022]
4254

43-
runs-on: ${{ matrix.os }}
55+
runs-on: ${{matrix.os}}
4456

4557
steps:
4658
- name: Checkout
@@ -49,11 +61,11 @@ jobs:
4961
with:
5062
fetch-depth: 1
5163

52-
- name: Setup Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
64+
- name: Setup Node.js ${{matrix.node-version}} on ${{matrix.os}}
5365
# https://github.com/actions/setup-node
5466
uses: actions/setup-node@v4
5567
with:
56-
node-version: ${{ matrix.node-version }}
68+
node-version: ${{matrix.node-version}}
5769
cache: 'npm'
5870

5971
- name: Show node & npm versions, environment

.gitignore

+87-14
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ logs
44
npm-debug.log*
55
yarn-debug.log*
66
yarn-error.log*
7+
lerna-debug.log*
8+
.pnpm-debug.log*
9+
10+
# Diagnostic reports (https://nodejs.org/api/report.html)
11+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
712

813
# Runtime data
914
pids
@@ -16,51 +21,119 @@ lib-cov
1621

1722
# Coverage directory used by tools like istanbul
1823
coverage
24+
*.lcov
1925

2026
# nyc test coverage
2127
.nyc_output
2228

23-
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
29+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
2430
.grunt
2531

32+
# Bower dependency directory (https://bower.io/)
33+
bower_components
34+
2635
# node-waf configuration
2736
.lock-wscript
2837

29-
# Compiled binary addons (http://nodejs.org/api/addons.html)
38+
# Compiled binary addons (https://nodejs.org/api/addons.html)
3039
build/Release
3140

3241
# Dependency directories
33-
node_modules
34-
jspm_packages
35-
xpacks/
42+
node_modules/
43+
jspm_packages/
3644

37-
# TypeScript v1 declaration files
38-
typings/
45+
# Snowpack dependency directory (https://snowpack.dev/)
46+
web_modules/
47+
48+
# TypeScript cache
49+
*.tsbuildinfo
3950

4051
# Optional npm cache directory
4152
.npm
4253

4354
# Optional eslint cache
4455
.eslintcache
4556

57+
# Optional stylelint cache
58+
.stylelintcache
59+
60+
# Microbundle cache
61+
.rpt2_cache/
62+
.rts2_cache_cjs/
63+
.rts2_cache_es/
64+
.rts2_cache_umd/
65+
4666
# Optional REPL history
4767
.node_repl_history
4868

49-
# Archives
50-
/*.tgz
69+
# Output of 'npm pack'
70+
*.tgz
5171

5272
# Yarn Integrity file
5373
.yarn-integrity
5474

55-
# dotenv environment variables file
75+
# dotenv environment variable files
5676
.env
77+
.env.development.local
78+
.env.test.local
79+
.env.production.local
80+
.env.local
5781

58-
# next.js build output
82+
# parcel-bundler cache (https://parceljs.org/)
83+
.cache
84+
.parcel-cache
85+
86+
# Next.js build output
5987
.next
88+
out
6089

61-
.tap
90+
# Nuxt.js build / generate output
91+
.nuxt
92+
dist
93+
94+
# Gatsby files
95+
.cache/
96+
# Comment in the public line in if your project uses Gatsby and not Next.js
97+
# https://nextjs.org/blog/next-9-1#public-directory-support
98+
# public
99+
100+
# vuepress build output
101+
.vuepress/dist
102+
103+
# vuepress v2.x temp and cache directory
104+
.temp
105+
.cache
62106

63-
# ---
107+
# Docusaurus cache and generated files
108+
.docusaurus
109+
110+
# Serverless directories
111+
.serverless/
112+
113+
# FuseBox cache
114+
.fusebox/
115+
116+
# DynamoDB Local files
117+
.dynamodb/
118+
119+
# TernJS port file
120+
.tern-port
121+
122+
# Stores VSCode versions used for testing VSCode extensions
123+
.vscode-test
124+
125+
# yarn v2
126+
.yarn/cache
127+
.yarn/unplugged
128+
.yarn/build-state.yml
129+
.yarn/install-state.gz
130+
.pnp.*
131+
132+
# ----- custom -----
133+
134+
xpacks/
135+
136+
.tap
64137

65138
cjs/
66139
**/*.js.map
@@ -83,4 +156,4 @@ Thumbs.db
83156
website/.docusaurus
84157
website/build
85158

86-
#end
159+
# ----- end -----

.npmignore

+7
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ README-*.md
5656
LICENSE-*
5757
!LICENSE-XPACK
5858
CONTRIBUTING**
59+
NOTES.md
5960

6061
*.ts
6162
lib/**/*.ts
@@ -80,5 +81,11 @@ patches/
8081
pkgconfig/
8182
ci/
8283
example*/
84+
test*/
85+
build*/
86+
docs/
87+
build-assets/
88+
wrappers/
89+
extras/
8390

8491
#end

0 commit comments

Comments
 (0)