punchcutter 2.0.9 → 2.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.circleci/config.yml +3 -3
- package/README.md +6 -6
- package/package.json +5 -1
package/.circleci/config.yml
CHANGED
|
@@ -2,15 +2,15 @@ version: 2
|
|
|
2
2
|
jobs:
|
|
3
3
|
build:
|
|
4
4
|
docker:
|
|
5
|
-
- image: cimg/node:16.
|
|
5
|
+
- image: cimg/node:18.16.0-browsers
|
|
6
6
|
steps:
|
|
7
7
|
- checkout
|
|
8
8
|
- run:
|
|
9
9
|
name: Install dependencies
|
|
10
10
|
command: |
|
|
11
|
-
sudo npm install -g bower grunt-cli gulp-cli npm@
|
|
11
|
+
sudo npm install -g bower grunt-cli gulp-cli npm@9
|
|
12
12
|
sudo apt-get update -qq
|
|
13
|
-
sudo apt-get install -y -qq build-essential fontforge g++ gcc graphicsmagick
|
|
13
|
+
sudo apt-get install -y -qq build-essential fontforge g++ gcc graphicsmagick python3-dev ttfautohint
|
|
14
14
|
npm ci
|
|
15
15
|
- run:
|
|
16
16
|
name: Run tests
|
package/README.md
CHANGED
|
@@ -12,13 +12,13 @@ Build web fonts, glyphs and sprites.
|
|
|
12
12
|
sudo apt-get install fontforge g++ graphicsmagick pngquant ttfautohint
|
|
13
13
|
```
|
|
14
14
|
|
|
15
|
-
2. Install Node
|
|
15
|
+
2. Install Node 18.x:
|
|
16
16
|
|
|
17
17
|
```shell
|
|
18
18
|
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.8/install.sh | bash
|
|
19
19
|
source ~/.bashrc
|
|
20
|
-
nvm install
|
|
21
|
-
nvm alias default
|
|
20
|
+
nvm install v18.16.0
|
|
21
|
+
nvm alias default v18.16.0
|
|
22
22
|
```
|
|
23
23
|
|
|
24
24
|
### OS X
|
|
@@ -33,13 +33,13 @@ Build web fonts, glyphs and sprites.
|
|
|
33
33
|
brew install ttfautohint --with-qt
|
|
34
34
|
```
|
|
35
35
|
|
|
36
|
-
2. Install Node
|
|
36
|
+
2. Install Node 18.x:
|
|
37
37
|
|
|
38
38
|
```shell
|
|
39
39
|
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.8/install.sh | bash
|
|
40
40
|
source ~/.bashrc
|
|
41
|
-
nvm install
|
|
42
|
-
nvm alias default
|
|
41
|
+
nvm install v18.16.0
|
|
42
|
+
nvm alias default v18.16.0
|
|
43
43
|
```
|
|
44
44
|
|
|
45
45
|
## Usage
|