scratch-render-fonts 1.0.0-prerelease.20221024190656 → 1.0.0-prerelease.20221102164332

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.
@@ -5,7 +5,7 @@ executors:
5
5
  docker:
6
6
  - image: "cimg/node:8.17.0"
7
7
  working_directory: ~/project
8
- resource_class: large
8
+ resource_class: medium
9
9
 
10
10
  commands:
11
11
  setup:
@@ -39,7 +39,6 @@ commands:
39
39
  - run:
40
40
  name: Deploy
41
41
  command: |
42
- echo $VERSION
43
42
  npm --no-git-tag-version version $VERSION
44
43
  npm set //registry.npmjs.org/:_authToken=$NPM_TOKEN
45
44
  npm publish
@@ -66,18 +65,21 @@ workflows:
66
65
  build-and-test-workflow:
67
66
  when:
68
67
  not:
69
- and:
70
- - equal: [tsm/circleci, <<pipeline.git.branch>>]
68
+ or:
69
+ - equal: [ master, <<pipeline.git.branch>> ]
70
+ - equal: [ develop, <<pipeline.git.branch>> ]
71
+ - matches: { pattern: "^hotfix.*", value: <<pipeline.git.branch>> }
72
+ - matches: { pattern: "^release.*", value: <<pipeline.git.branch>> }
71
73
  jobs:
72
74
  - build-and-test
73
75
 
74
76
  deploy-workflow:
75
77
  when:
76
78
  or:
77
- - equal: [master, <<pipeline.git.branch>>]
78
- - equal: [develop, <<pipeline.git.branch>>]
79
- - equal: [hotfix/*, <<pipeline.git.branch>>]
80
- - equal: [tsm/circleci, <<pipeline.git.branch>>]
79
+ - equal: [ master, <<pipeline.git.branch>> ]
80
+ - equal: [ develop, <<pipeline.git.branch>> ]
81
+ - matches: { pattern: "^hotfix.*", value: <<pipeline.git.branch>> }
82
+ - matches: { pattern: "^release.*", value: <<pipeline.git.branch>> }
81
83
  jobs:
82
84
  - build-and-test
83
85
  - deploy:
package/README.md CHANGED
@@ -1,2 +1,4 @@
1
1
  # scratch-render-fonts
2
2
  Fonts for Scratch SVG rendering
3
+
4
+ [![CircleCI](https://circleci.com/gh/LLK/scratch-render-fonts/tree/master.svg?style=shield&circle-token=786988d80057cc1ac25c39fb4f5754d736106fa7)](https://circleci.com/gh/LLK/scratch-render-fonts?branch=master)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "scratch-render-fonts",
3
- "version": "1.0.0-prerelease.20221024190656",
3
+ "version": "1.0.0-prerelease.20221102164332",
4
4
  "description": "",
5
5
  "main": "./src/index.js",
6
6
  "author": "Massachusetts Institute of Technology",