Skip to content

Commit

Permalink
re-generate commons
Browse files Browse the repository at this point in the history
  • Loading branch information
ilg-ul committed Dec 24, 2024
1 parent 2937ff6 commit b085e9f
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-github-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:
- '**/tsconfig*.json'
- 'src/**/*.ts'
- 'README.md'
- '.github/workflows/typedoc.yml'
- '.github/workflows/publish-github-pages.yml'
- 'package.json'

# Allows you to run this workflow manually from the Actions tab
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
# https://github.com/actions/checkout
uses: actions/checkout@v3
with:
fetch-depth: 3
fetch-depth: 1

- name: Setup Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
# https://github.com/actions/setup-node
Expand Down
10 changes: 5 additions & 5 deletions README-MAINTAINER.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ The project uses two branches:
To clone the `master` branch, use:

```sh
mkdir ${HOME}/Work/npm-modules && cd ${HOME}/Work/npm-modules
mkdir ${HOME}/Work/npm-packages && cd ${HOME}/Work/npm-packages
git clone \
https://github.com/xpack/update-checker-ts.git update-checker-ts.git
```
Expand Down Expand Up @@ -156,13 +156,13 @@ A full test run, including coverage, looks like:
```console
% npm run test-100-c8

> @xpack/update-checker@2.0.0 pretest-100-c8 /Users/ilg/My Files/WKS Projects/xpack.github/npm-modules/update-checker-ts.git
> @xpack/update-checker@2.0.0 pretest-100-c8 /Users/ilg/My Files/WKS Projects/xpack.github/npm-packages/update-checker-ts.git
> npm run lint

> @xpack/update-checker@2.0.0 lint /Users/ilg/My Files/WKS Projects/xpack.github/npm-modules/update-checker-ts.git
> @xpack/update-checker@2.0.0 lint /Users/ilg/My Files/WKS Projects/xpack.github/npm-packages/update-checker-ts.git
> ts-standard src

> @xpack/update-checker@2.0.0 test-100-c8 /Users/ilg/My Files/WKS Projects/xpack.github/npm-modules/update-checker-ts.git
> @xpack/update-checker@2.0.0 test-100-c8 /Users/ilg/My Files/WKS Projects/xpack.github/npm-packages/update-checker-ts.git
> npm run test-tap-coverage-100-c8 -s

(node:9919) ExperimentalWarning: --experimental-loader is an experimental feature. This feature could change at any time
Expand Down Expand Up @@ -192,7 +192,7 @@ To run a specific test with more verbose output, use `npm run tap`:
```console
% npm run tap tests/tap/010-constructor.ts

> @xpack/update-checker@2.0.0 tap /Users/ilg/My Files/WKS Projects/xpack.github/npm-modules/update-checker-ts.git
> @xpack/update-checker@2.0.0 tap /Users/ilg/My Files/WKS Projects/xpack.github/npm-packages/update-checker-ts.git
> tap --reporter=spec "tests/tap/010-constructor.ts"

(node:10352) ExperimentalWarning: --experimental-loader is an experimental feature. This feature could change at any time
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
"test-100-c8": "npm run test-tap-coverage-100-c8 -s",
"dev-cycle": "npm run fix && npm run compile && npm run test-100-c8",
"typedoc": "typedoc --logLevel Verbose",
"safari": "open -a Safari docs/index.html",
"clean": "del-cli esm docs 'tests/**/esm' 'src/**/*.d.ts' 'src/**/*.d.ts.map' 'src/**/*.js' 'src/**/*.js.map' 'tests/**/*.d.ts' 'tests/**/*.d.ts.map' 'tests/**/*.js' 'tests/**/*.js.map' '**/tsconfig.tsbuildinfo' .nyc_output coverage",
"deep-clean": "npm run clean && rm -rf node_modules package-lock.json",
"npm-version": "echo $(which node) $(node --version) && echo $(which npm) $(npm --version)"
Expand Down Expand Up @@ -90,7 +91,7 @@
"typedoc": "^0.24.4",
"typescript": "^4.9.5"
},
"bundledDependencies": [],
"bundleDependencies": [],
"tap": {
"check-coverage": false,
"coverage": false,
Expand Down

0 comments on commit b085e9f

Please sign in to comment.