mirror of
https://github.com/acamarata/moment-hijri-plus.git
synced 2026-07-04 12:40:42 +00:00
Compare commits
No commits in common. "main" and "v1.0.4" have entirely different histories.
6 changed files with 1 additions and 172 deletions
|
|
@ -1,140 +0,0 @@
|
||||||
# Forgejo CI mirror — git.ariccamarata.com
|
|
||||||
# Mirrors .github/workflows/ci.yml for the self-hosted Forgejo Actions runner.
|
|
||||||
# Keep in sync with the GitHub workflow; only addition is the nSentry failure step.
|
|
||||||
name: CI
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches: [main]
|
|
||||||
pull_request:
|
|
||||||
branches: [main]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
test:
|
|
||||||
name: Test (Node ${{ matrix.node }})
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
node: [20, 22, 24]
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
- name: Enable corepack
|
|
||||||
run: corepack enable
|
|
||||||
- uses: actions/setup-node@v4
|
|
||||||
with:
|
|
||||||
node-version: ${{ matrix.node }}
|
|
||||||
cache: pnpm
|
|
||||||
- run: pnpm install --frozen-lockfile
|
|
||||||
- run: pnpm run build
|
|
||||||
- run: node --test test.mjs
|
|
||||||
- run: node --test test-cjs.cjs
|
|
||||||
- name: Report failure to nSentry
|
|
||||||
if: failure()
|
|
||||||
run: |
|
|
||||||
# nself sentry ci enable <repo> must be run on the CamClaw server first.
|
|
||||||
# Once registered, the runner's nself-sentry-sync hook delivers this report
|
|
||||||
# to ~/Sites/acamarata/.claude/inbox via root@sentry-errors.ariccamarata.com.
|
|
||||||
echo "CI_FAILURE repo=${{ github.repository }} job=${{ github.job }} run=${{ github.run_id }}" >&2
|
|
||||||
|
|
||||||
lint:
|
|
||||||
name: Lint
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
- name: Enable corepack
|
|
||||||
run: corepack enable
|
|
||||||
- uses: actions/setup-node@v4
|
|
||||||
with:
|
|
||||||
node-version: 24
|
|
||||||
cache: pnpm
|
|
||||||
- run: pnpm install --frozen-lockfile
|
|
||||||
- run: pnpm run lint
|
|
||||||
- run: pnpm run format:check
|
|
||||||
- name: Report failure to nSentry
|
|
||||||
if: failure()
|
|
||||||
run: |
|
|
||||||
# nself sentry ci enable <repo> must be run on the CamClaw server first.
|
|
||||||
# Once registered, the runner's nself-sentry-sync hook delivers this report
|
|
||||||
# to ~/Sites/acamarata/.claude/inbox via root@sentry-errors.ariccamarata.com.
|
|
||||||
echo "CI_FAILURE repo=${{ github.repository }} job=${{ github.job }} run=${{ github.run_id }}" >&2
|
|
||||||
|
|
||||||
typecheck:
|
|
||||||
name: Typecheck
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
- name: Enable corepack
|
|
||||||
run: corepack enable
|
|
||||||
- uses: actions/setup-node@v4
|
|
||||||
with:
|
|
||||||
node-version: 24
|
|
||||||
cache: pnpm
|
|
||||||
- run: pnpm install --frozen-lockfile
|
|
||||||
- run: pnpm run typecheck
|
|
||||||
- name: Report failure to nSentry
|
|
||||||
if: failure()
|
|
||||||
run: |
|
|
||||||
# nself sentry ci enable <repo> must be run on the CamClaw server first.
|
|
||||||
# Once registered, the runner's nself-sentry-sync hook delivers this report
|
|
||||||
# to ~/Sites/acamarata/.claude/inbox via root@sentry-errors.ariccamarata.com.
|
|
||||||
echo "CI_FAILURE repo=${{ github.repository }} job=${{ github.job }} run=${{ github.run_id }}" >&2
|
|
||||||
|
|
||||||
pack-check:
|
|
||||||
name: Pack check
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
- name: Enable corepack
|
|
||||||
run: corepack enable
|
|
||||||
- uses: actions/setup-node@v4
|
|
||||||
with:
|
|
||||||
node-version: 24
|
|
||||||
cache: pnpm
|
|
||||||
- run: pnpm install --frozen-lockfile
|
|
||||||
- run: pnpm run build
|
|
||||||
- name: Verify pack contents
|
|
||||||
run: |
|
|
||||||
npm pack --dry-run 2>&1 | tee pack-output.txt
|
|
||||||
grep "dist/index.cjs" pack-output.txt
|
|
||||||
grep "dist/index.mjs" pack-output.txt
|
|
||||||
grep "dist/index.d.ts" pack-output.txt
|
|
||||||
grep "dist/index.d.mts" pack-output.txt
|
|
||||||
grep "README.md" pack-output.txt
|
|
||||||
grep "CHANGELOG.md" pack-output.txt
|
|
||||||
grep "LICENSE" pack-output.txt
|
|
||||||
- name: Report failure to nSentry
|
|
||||||
if: failure()
|
|
||||||
run: |
|
|
||||||
# nself sentry ci enable <repo> must be run on the CamClaw server first.
|
|
||||||
# Once registered, the runner's nself-sentry-sync hook delivers this report
|
|
||||||
# to ~/Sites/acamarata/.claude/inbox via root@sentry-errors.ariccamarata.com.
|
|
||||||
echo "CI_FAILURE repo=${{ github.repository }} job=${{ github.job }} run=${{ github.run_id }}" >&2
|
|
||||||
|
|
||||||
coverage:
|
|
||||||
name: Coverage
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
- name: Enable corepack
|
|
||||||
run: corepack enable
|
|
||||||
- uses: actions/setup-node@v4
|
|
||||||
with:
|
|
||||||
node-version: 24
|
|
||||||
cache: pnpm
|
|
||||||
- run: pnpm install --frozen-lockfile
|
|
||||||
- run: pnpm run build
|
|
||||||
- name: Coverage
|
|
||||||
run: pnpm run coverage
|
|
||||||
- name: Upload to Codecov
|
|
||||||
uses: codecov/codecov-action@v4
|
|
||||||
with:
|
|
||||||
files: ./coverage/lcov.info
|
|
||||||
token: ${{ secrets.CODECOV_TOKEN }}
|
|
||||||
fail_ci_if_error: false
|
|
||||||
- name: Report failure to nSentry
|
|
||||||
if: failure()
|
|
||||||
run: |
|
|
||||||
# nself sentry ci enable <repo> must be run on the CamClaw server first.
|
|
||||||
# Once registered, the runner's nself-sentry-sync hook delivers this report
|
|
||||||
# to ~/Sites/acamarata/.claude/inbox via root@sentry-errors.ariccamarata.com.
|
|
||||||
echo "CI_FAILURE repo=${{ github.repository }} job=${{ github.job }} run=${{ github.run_id }}" >&2
|
|
||||||
|
|
@ -75,7 +75,3 @@ support on Day.js. This package targets existing codebases already using Moment.
|
||||||
## License
|
## License
|
||||||
|
|
||||||
MIT. Copyright (c) 2026 Aric Camarata.
|
MIT. Copyright (c) 2026 Aric Camarata.
|
||||||
|
|
||||||
## Telemetry
|
|
||||||
|
|
||||||
This package supports optional, anonymous usage telemetry via [`@acamarata/telemetry`](https://github.com/acamarata/telemetry). It is **off by default**. See [TELEMETRY.md](https://github.com/acamarata/telemetry/blob/main/TELEMETRY.md) for what is collected and how to enable or disable it.
|
|
||||||
|
|
@ -1,8 +0,0 @@
|
||||||
# Telemetry Disclosure
|
|
||||||
|
|
||||||
This package supports opt-in anonymous usage telemetry via [`@acamarata/telemetry`](https://github.com/acamarata/telemetry).
|
|
||||||
|
|
||||||
Telemetry is **off by default**. No data is sent unless you set `ACAMARATA_TELEMETRY=1`.
|
|
||||||
|
|
||||||
Full disclosure (what is sent, where it goes, how to disable):
|
|
||||||
[github.com/acamarata/telemetry/blob/main/TELEMETRY.md](https://github.com/acamarata/telemetry/blob/main/TELEMETRY.md)
|
|
||||||
|
|
@ -77,8 +77,7 @@
|
||||||
"typedoc": "^0.28.19",
|
"typedoc": "^0.28.19",
|
||||||
"typedoc-plugin-markdown": "^4.11.0",
|
"typedoc-plugin-markdown": "^4.11.0",
|
||||||
"typescript": "^5.5.0",
|
"typescript": "^5.5.0",
|
||||||
"typescript-eslint": "^8.56.1",
|
"typescript-eslint": "^8.56.1"
|
||||||
"@acamarata/telemetry": "^0.1.0"
|
|
||||||
},
|
},
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public",
|
"access": "public",
|
||||||
|
|
|
||||||
|
|
@ -14,9 +14,6 @@ importers:
|
||||||
'@acamarata/prettier-config':
|
'@acamarata/prettier-config':
|
||||||
specifier: ^0.1.0
|
specifier: ^0.1.0
|
||||||
version: 0.1.0(prettier@3.8.1)
|
version: 0.1.0(prettier@3.8.1)
|
||||||
'@acamarata/telemetry':
|
|
||||||
specifier: ^0.1.0
|
|
||||||
version: 0.1.0
|
|
||||||
'@acamarata/tsconfig':
|
'@acamarata/tsconfig':
|
||||||
specifier: ^0.1.0
|
specifier: ^0.1.0
|
||||||
version: 0.1.0
|
version: 0.1.0
|
||||||
|
|
@ -90,10 +87,6 @@ packages:
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
prettier: '>=3.0.0'
|
prettier: '>=3.0.0'
|
||||||
|
|
||||||
'@acamarata/telemetry@0.1.0':
|
|
||||||
resolution: {integrity: sha512-iP09ZD0bHencHLbv6kQZDgwN9crLCWGKxmiMrfJjhBCoWTgv4koSgg0Li/LFKwCCFluua6orj9fVeQ8eqcJXSQ==}
|
|
||||||
engines: {node: '>=20'}
|
|
||||||
|
|
||||||
'@acamarata/tsconfig@0.1.0':
|
'@acamarata/tsconfig@0.1.0':
|
||||||
resolution: {integrity: sha512-bgzyBak43mE+0HhduZX3cvaPjKcggtGGZZMjr35qtYWolsIWgZ9nx7OOswbVYoU35qoUv6rZ0mTK6GbZ8QTYjw==}
|
resolution: {integrity: sha512-bgzyBak43mE+0HhduZX3cvaPjKcggtGGZZMjr35qtYWolsIWgZ9nx7OOswbVYoU35qoUv6rZ0mTK6GbZ8QTYjw==}
|
||||||
engines: {node: '>=20'}
|
engines: {node: '>=20'}
|
||||||
|
|
@ -1258,8 +1251,6 @@ snapshots:
|
||||||
dependencies:
|
dependencies:
|
||||||
prettier: 3.8.1
|
prettier: 3.8.1
|
||||||
|
|
||||||
'@acamarata/telemetry@0.1.0': {}
|
|
||||||
|
|
||||||
'@acamarata/tsconfig@0.1.0': {}
|
'@acamarata/tsconfig@0.1.0': {}
|
||||||
|
|
||||||
'@bcoe/v8-coverage@1.0.2': {}
|
'@bcoe/v8-coverage@1.0.2': {}
|
||||||
|
|
|
||||||
|
|
@ -254,12 +254,3 @@ function install(momentInstance: typeof moment): void {
|
||||||
export default install;
|
export default install;
|
||||||
export type { HijriDate, ConversionOptions, CalendarEngine } from "hijri-core";
|
export type { HijriDate, ConversionOptions, CalendarEngine } from "hijri-core";
|
||||||
export { registerCalendar, getCalendar, listCalendars } from "hijri-core";
|
export { registerCalendar, getCalendar, listCalendars } from "hijri-core";
|
||||||
|
|
||||||
// ── Opt-in anonymous telemetry ────────────────────────────────────────────────
|
|
||||||
// Off by default. Enable: ACAMARATA_TELEMETRY=1
|
|
||||||
// What is sent + how to disable: https://github.com/acamarata/telemetry/blob/main/TELEMETRY.md
|
|
||||||
import("@acamarata/telemetry")
|
|
||||||
.then(({ track }) => track("load", { package: "moment-hijri-plus", version: "1.0.4" }))
|
|
||||||
.catch(() => {
|
|
||||||
// telemetry not installed or disabled — that's fine
|
|
||||||
});
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue