punchcutter 2.0.9 → 2.0.11

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.
@@ -2,15 +2,15 @@ version: 2
2
2
  jobs:
3
3
  build:
4
4
  docker:
5
- - image: cimg/node:16.14.2-browsers
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@8
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 python-dev ttfautohint
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 v16 or higher:
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 v16.13.2
21
- nvm alias default v16.13.2
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 v16 or higher:
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 v16.13.2
42
- nvm alias default v16.13.2
41
+ nvm install v18.16.0
42
+ nvm alias default v18.16.0
43
43
  ```
44
44
 
45
45
  ## Usage
package/package.json CHANGED
@@ -1,6 +1,10 @@
1
1
  {
2
2
  "name": "punchcutter",
3
- "version": "2.0.9",
3
+ "version": "2.0.11",
4
+ "engines": {
5
+ "node": "20.10.0",
6
+ "npm": "10.2.3"
7
+ },
4
8
  "description": "Build fonts",
5
9
  "main": "lib/punchcutter.js",
6
10
  "repository": {
@@ -21,15 +25,15 @@
21
25
  "url": "https://github.com/netbek/punchcutter/issues"
22
26
  },
23
27
  "dependencies": {
24
- "autoprefixer": "10.4.14",
28
+ "autoprefixer": "10.4.16",
25
29
  "bluebird": "3.7.2",
26
30
  "chalk": "4.1.2",
27
31
  "cheerio": "0.22.0",
28
32
  "directory-colorfy": "https://github.com/netbek/directory-colorfy.git#netbek-jsdom-9",
29
- "eslint": "8.41.0",
30
- "eslint-config-prettier": "8.8.0",
33
+ "eslint": "8.56.0",
34
+ "eslint-config-prettier": "8.10.0",
31
35
  "eslint-plugin-prettier": "4.2.1",
32
- "espree": "9.5.2",
36
+ "espree": "9.6.1",
33
37
  "fs-extra": "10.1.0",
34
38
  "globby": "9.2.0",
35
39
  "grunt": "1.6.1",
@@ -37,16 +41,16 @@
37
41
  "lodash": "4.17.21",
38
42
  "node-sass": "7.0.3",
39
43
  "nunjucks": "3.2.4",
40
- "postcss": "8.4.24",
44
+ "postcss": "8.4.33",
41
45
  "prettier": "2.8.8",
42
46
  "replace-ext": "2.0.0",
43
- "sharp": "0.32.1",
47
+ "sharp": "0.33.1",
44
48
  "spritesmith": "3.4.1",
45
49
  "svgo": "2.8.0",
46
50
  "svgstore": "3.0.1"
47
51
  },
48
52
  "devDependencies": {
49
- "chai": "4.3.7",
53
+ "chai": "4.4.0",
50
54
  "chai-as-promised": "7.1.1",
51
55
  "mocha": "9.2.2"
52
56
  }