Skip to content

Commit b6e2da9

Browse files
committed
fix: missing fonts in google chrome
1 parent 71bf1df commit b6e2da9

File tree

5 files changed

+422
-495
lines changed

5 files changed

+422
-495
lines changed

.mdeprc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"node": "9.10.0",
2+
"node": "9.11.1",
33
"repo": "microfleet",
44
"p": "html-to-pdf",
55
"nycCoverage": false,

.npmignore

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

.releaserc.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
{
22
"branch": "master",
3-
"publish": [
3+
"prepare": [
4+
"@semantic-release/changelog",
5+
"@semantic-release/npm",
46
{ "path": "@semantic-release/exec", "cmd": "yarn docker-release" },
7+
"@semantic-release/git"
8+
],
9+
"publish": [
510
"@semantic-release/npm",
611
"@semantic-release/github"
712
],

package.json

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@
1515
"prepublishOnly": "yarn compile",
1616
"semantic-release": "semantic-release",
1717
"docker-release": "mdep docker release",
18-
"release": "yarn && yarn semantic-release",
18+
"release": "yarn --frozen-lockfile && yarn semantic-release",
1919
"commitmsg": "commitlint -e $GIT_PARAMS",
2020
"preparecommitmsg": "./node_modules/@makeomatic/deploy/git-hooks/prepare-commit-msg $GIT_PARAMS"
2121
},
2222
"publishConfig": {
2323
"access": "public"
2424
},
2525
"dependencies": {
26-
"@microfleet/core": "^10.2.4",
26+
"@microfleet/core": "^10.3.1",
2727
"@microfleet/transport-amqp": "^13.0.1",
2828
"bluebird": "^3.5.1",
2929
"bluebird-retry": "^0.11.0",
@@ -40,26 +40,33 @@
4040
"stdout-stream": "^1.4.0"
4141
},
4242
"devDependencies": {
43-
"@makeomatic/deploy": "^6.0.2",
44-
"@semantic-release/exec": "^2.2.3",
43+
"@makeomatic/deploy": "^6.1.0",
44+
"@semantic-release/changelog": "^2.0.2",
45+
"@semantic-release/exec": "^2.2.4",
46+
"@semantic-release/git": "^5.0.0",
4547
"babel-cli": "^6.26.0",
46-
"babel-eslint": "^8.2.2",
47-
"babel-plugin-istanbul": "^4.1.5",
48+
"babel-eslint": "^8.2.3",
49+
"babel-plugin-istanbul": "^4.1.6",
4850
"babel-plugin-transform-class-properties": "^6.24.1",
4951
"babel-plugin-transform-object-rest-spread": "^6.26.0",
5052
"babel-plugin-transform-strict-mode": "^6.24.1",
5153
"babel-register": "^6.26.0",
5254
"cheerio": "^1.0.0-rc.2",
53-
"codecov": "^3.0.0",
55+
"codecov": "^3.0.2",
5456
"cross-env": "^5.1.4",
5557
"eslint": "^4.19.1",
5658
"eslint-config-makeomatic": "^2.0.1",
57-
"eslint-plugin-import": "^2.10.0",
59+
"eslint-plugin-import": "^2.11.0",
5860
"eslint-plugin-promise": "^3.7.0",
5961
"jest": "^22.4.3",
6062
"json": "^9.0.6",
6163
"rimraf": "^2.6.2"
6264
},
65+
"files": [
66+
"src/",
67+
"lib/",
68+
"schemas/"
69+
],
6370
"jest": {
6471
"testPathIgnorePatterns": [
6572
"/node_modules/",

0 commit comments

Comments
 (0)