Skip to content

Commit 39900d6

Browse files
committed
publish: add (esm)
1 parent 2792d9b commit 39900d6

27 files changed

+7261
-5638
lines changed

.circleci/config.yml

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# See: https://circleci.com/docs/2.0/configuration-reference
2+
version: 2.1
3+
4+
orbs:
5+
# See the orb documentation here: https://circleci.com/developer/orbs/orb/circleci/node
6+
node: circleci/node@5.1.0
7+
8+
jobs:
9+
build-and-test:
10+
# These next lines define a Docker executor: https://circleci.com/docs/2.0/executor-types/
11+
# https://circleci.com/developer/images/image/cimg/node
12+
docker:
13+
- image: cimg/node:20.8.1
14+
steps:
15+
- checkout
16+
- node/install-packages:
17+
pkg-manager: npm
18+
- run:
19+
name: Build project
20+
command: npm run build
21+
- run:
22+
name: Run tests
23+
command: npm run test
24+
25+
workflows:
26+
# Inside the workflow, you provide the jobs you want to run, e.g this workflow runs the build-and-test job above.
27+
# CircleCI will run this workflow on every commit.
28+
# https://circleci.com/docs/2.0/configuration-reference/#workflows
29+
TestRunner:
30+
jobs:
31+
- build-and-test

.travis.yml

-12
This file was deleted.

docs/.nojekyll

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
TypeDoc added this file to prevent GitHub Pages from using Jekyll. You can turn off this behavior by setting the `githubPages` option to false.

0 commit comments

Comments
 (0)