Compare commits

..

3 Commits

Author SHA1 Message Date
878592fbc6 readme
All checks were successful
Build and test / build-and-test (18.x) (push) Successful in 12s
Build and test / build-and-test (20.x) (push) Successful in 17s
2023-08-26 18:37:46 -07:00
aa7272b0b4 add .npmignore file
Some checks failed
Build and test / build-and-test (18.x) (push) Successful in 12s
Build and test / build-and-test (20.x) (push) Failing after 42s
2023-08-26 18:28:44 -07:00
0db015e91d cleanup
All checks were successful
Build and test / build-and-test (18.x) (push) Successful in 13s
Build and test / build-and-test (20.x) (push) Successful in 11s
2023-08-26 16:12:23 -07:00
4 changed files with 15 additions and 6 deletions

View File

@@ -3,9 +3,9 @@ name: Build and publish
on: on:
workflow_dispatch: { } workflow_dispatch: { }
push: # push:
branches: # branches:
- master # - master
jobs: jobs:
build-and-publish: build-and-publish:

View File

@@ -2,9 +2,9 @@
name: Build and test name: Build and test
on: on:
# push: push:
# branches: branches:
# - master - master
pull_request: pull_request:
branches: branches:
- master - master

3
.npmignore Normal file
View File

@@ -0,0 +1,3 @@
.gitea
src
tsconfig.json

View File

@@ -6,7 +6,13 @@ In-memory caching/memoization utilities
## Install ## Install
```bash ```bash
# Update project npm config to refer to correct registry for the @js scope
echo '@js:registry=https://gitea.jbrumond.me/api/packages/js/npm/' >> ./.npmrc
npm install --save @js/memo npm install --save @js/memo
# optional - additional supporting typescript definitions
npm install --save-dev @js/types
``` ```
## Usage ## Usage