scratch-render-fonts 1.0.0-prerelease.20221024190656 → 1.0.0-prerelease.20231017224555
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 +11 -11
- package/README.md +2 -0
- package/package.json +2 -5
- package/renovate.json5 +7 -0
package/.circleci/config.yml
CHANGED
|
@@ -5,7 +5,7 @@ executors:
|
|
|
5
5
|
docker:
|
|
6
6
|
- image: "cimg/node:8.17.0"
|
|
7
7
|
working_directory: ~/project
|
|
8
|
-
resource_class:
|
|
8
|
+
resource_class: medium
|
|
9
9
|
|
|
10
10
|
commands:
|
|
11
11
|
setup:
|
|
@@ -13,9 +13,7 @@ commands:
|
|
|
13
13
|
- run:
|
|
14
14
|
name: Setup
|
|
15
15
|
command: |
|
|
16
|
-
npm
|
|
17
|
-
npm update
|
|
18
|
-
npm prune
|
|
16
|
+
npm ci
|
|
19
17
|
test:
|
|
20
18
|
steps:
|
|
21
19
|
- run:
|
|
@@ -39,7 +37,6 @@ commands:
|
|
|
39
37
|
- run:
|
|
40
38
|
name: Deploy
|
|
41
39
|
command: |
|
|
42
|
-
echo $VERSION
|
|
43
40
|
npm --no-git-tag-version version $VERSION
|
|
44
41
|
npm set //registry.npmjs.org/:_authToken=$NPM_TOKEN
|
|
45
42
|
npm publish
|
|
@@ -66,18 +63,21 @@ workflows:
|
|
|
66
63
|
build-and-test-workflow:
|
|
67
64
|
when:
|
|
68
65
|
not:
|
|
69
|
-
|
|
70
|
-
- equal: [
|
|
66
|
+
or:
|
|
67
|
+
- equal: [ master, <<pipeline.git.branch>> ]
|
|
68
|
+
- equal: [ develop, <<pipeline.git.branch>> ]
|
|
69
|
+
- matches: { pattern: "^hotfix.*", value: <<pipeline.git.branch>> }
|
|
70
|
+
- matches: { pattern: "^release.*", value: <<pipeline.git.branch>> }
|
|
71
71
|
jobs:
|
|
72
72
|
- build-and-test
|
|
73
73
|
|
|
74
74
|
deploy-workflow:
|
|
75
75
|
when:
|
|
76
76
|
or:
|
|
77
|
-
- equal: [master, <<pipeline.git.branch>>]
|
|
78
|
-
- equal: [develop, <<pipeline.git.branch>>]
|
|
79
|
-
-
|
|
80
|
-
-
|
|
77
|
+
- equal: [ master, <<pipeline.git.branch>> ]
|
|
78
|
+
- equal: [ develop, <<pipeline.git.branch>> ]
|
|
79
|
+
- matches: { pattern: "^hotfix.*", value: <<pipeline.git.branch>> }
|
|
80
|
+
- matches: { pattern: "^release.*", value: <<pipeline.git.branch>> }
|
|
81
81
|
jobs:
|
|
82
82
|
- build-and-test
|
|
83
83
|
- deploy:
|
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "scratch-render-fonts",
|
|
3
|
-
"version": "1.0.0-prerelease.
|
|
3
|
+
"version": "1.0.0-prerelease.20231017224555",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./src/index.js",
|
|
6
6
|
"author": "Massachusetts Institute of Technology",
|
|
@@ -24,12 +24,9 @@
|
|
|
24
24
|
"babel-loader": "7.1.4",
|
|
25
25
|
"babel-preset-env": "1.6.1",
|
|
26
26
|
"eslint": "^4.14.0",
|
|
27
|
-
"eslint-config-import": "^0.13.0",
|
|
28
27
|
"eslint-config-scratch": "^5.0.0",
|
|
29
|
-
"eslint-plugin-import": "^2.8.0",
|
|
30
28
|
"json": "^9.0.6",
|
|
31
|
-
"lodash.defaultsdeep": "4.6.
|
|
32
|
-
"mkdirp": "^0.5.1",
|
|
29
|
+
"lodash.defaultsdeep": "4.6.1",
|
|
33
30
|
"rimraf": "^2.6.1",
|
|
34
31
|
"webpack": "^4.43.0",
|
|
35
32
|
"webpack-cli": "^3.3.11"
|