Skip to content

Commit 407bc93

Browse files
authored
Merge branch 'master' into feat/gpos-extended-kerning
2 parents 6639f51 + dd45f4d commit 407bc93

File tree

120 files changed

+3308
-39004
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

120 files changed

+3308
-39004
lines changed

.babelrc

Lines changed: 0 additions & 3 deletions
This file was deleted.

.editorconfig

Lines changed: 0 additions & 10 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: ci
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v3
14+
- uses: actions/setup-node@v2
15+
with:
16+
node-version: 18
17+
- run: npm install
18+
- run: npm run build
19+
- run: npm run dist
20+
- run: npm run test
21+
22+

.github/workflows/page.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Deploy to GH Pages
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
8+
permissions:
9+
pages: write
10+
contents: read
11+
id-token: write
12+
13+
jobs:
14+
deploy:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/checkout@v3
18+
- uses: actions/setup-node@v2
19+
with:
20+
node-version: 18
21+
- run: npm install
22+
- run: npm run build
23+
- run: npm run dist
24+
- run: mv dist docs
25+
- uses: actions/configure-pages@v3
26+
- uses: actions/upload-pages-artifact@v1
27+
with:
28+
path: docs
29+
- run: find docs
30+
- uses: actions/deploy-pages@v1
31+

.github/workflows/release.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: release
2+
3+
on:
4+
push:
5+
tags:
6+
- '*'
7+
8+
jobs:
9+
publish:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v3
13+
- uses: actions/setup-node@v2
14+
with:
15+
node-version: 18
16+
registry-url: 'https://registry.npmjs.org'
17+
- run: npm install
18+
- run: npm run build
19+
- run: npm run dist
20+
- run: npm run test
21+
- run: npm pkg set name=$(basename ${{github.repository}})
22+
- run: npm pkg set version=${{github.ref_name}}
23+
- run: npm publish --access public
24+
env:
25+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
*.iml
33
.DS_Store
44
/node_modules
5-
/build
5+
/dist
66
npm-debug.log
77
/.reify-cache
88
/experiments

.jscsrc

Lines changed: 0 additions & 22 deletions
This file was deleted.

.jshintignore

Lines changed: 0 additions & 7 deletions
This file was deleted.

.jshintrc

Lines changed: 0 additions & 17 deletions
This file was deleted.

.travis.yml

Lines changed: 0 additions & 11 deletions
This file was deleted.

0 commit comments

Comments
 (0)