Skip to content

Commit 43d3ce0

Browse files
v1.1.12
1 parent 7ed037f commit 43d3ce0

File tree

9 files changed

+14
-14
lines changed

9 files changed

+14
-14
lines changed

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
],
55
"npmClient": "yarn",
66
"useWorkspaces": true,
7-
"version": "1.1.11",
7+
"version": "1.1.12",
88
"command": {
99
"publish": {
1010
"allowBranch": "master"

packages/gimbal-core/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@modus/gimbal-core",
3-
"version": "1.1.11",
3+
"version": "1.1.12",
44
"description": "Core utilities for Modus Gimbal",
55
"author": "Mitchell Simoens <[email protected]>",
66
"homepage": "https://github.com/ModusCreateOrg/gimbal#readme",

packages/gimbal/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@modus/gimbal",
3-
"version": "1.1.11",
3+
"version": "1.1.12",
44
"description": "A CLI tool for monitoring web performance in modern web projects",
55
"main": "lib/gimbal/src/modules.js",
66
"bin": {
@@ -72,7 +72,7 @@
7272
},
7373
"homepage": "https://github.com/ModusCreateOrg/gimbal/tree/master/packages/gimbal#readme",
7474
"dependencies": {
75-
"@modus/gimbal-core": "1.1.11",
75+
"@modus/gimbal-core": "1.1.12",
7676
"@octokit/rest": "16.28.7",
7777
"brotli-size": "4.0.0",
7878
"bytes": "3.1.0",

packages/plugin-axe/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@modus/gimbal-plugin-axe",
3-
"version": "1.1.11",
3+
"version": "1.1.12",
44
"description": "Plugin to add axe audits to Gimbal",
55
"author": "Mitchell Simoens <[email protected]>",
66
"homepage": "https://github.com/ModusCreateOrg/gimbal#readme",

packages/plugin-last-value/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@modus/gimbal-plugin-last-value",
3-
"version": "1.1.11",
3+
"version": "1.1.12",
44
"description": "Track last value for Gimbal audits",
55
"homepage": "https://github.com/ModusCreateOrg/gimbal#readme",
66
"license": "MIT",
@@ -32,7 +32,7 @@
3232
"url": "https://github.com/ModusCreateOrg/gimbal/issues"
3333
},
3434
"dependencies": {
35-
"@modus/gimbal-core": "1.1.11",
35+
"@modus/gimbal-core": "1.1.12",
3636
"bytes": "3.1.0",
3737
"deepmerge": "4.0.0"
3838
},

packages/plugin-mysql/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@modus/gimbal-plugin-mysql",
3-
"version": "1.1.11",
3+
"version": "1.1.12",
44
"description": "MySQL storage helpers for Gimbal and Gimbal plugins",
55
"homepage": "https://github.com/ModusCreateOrg/gimbal#readme",
66
"license": "MIT",
@@ -32,7 +32,7 @@
3232
"url": "https://github.com/ModusCreateOrg/gimbal/issues"
3333
},
3434
"dependencies": {
35-
"@modus/gimbal-core": "1.1.11",
35+
"@modus/gimbal-core": "1.1.12",
3636
"deepmerge": "4.0.0",
3737
"mysql": "2.17.1"
3838
},

packages/plugin-source-map-explorer/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@modus/gimbal-plugin-source-map-explorer",
3-
"version": "1.1.11",
3+
"version": "1.1.12",
44
"description": "Adds Source Map Explorer auditing to Gimbal",
55
"homepage": "https://github.com/ModusCreateOrg/gimbal#readme",
66
"license": "MIT",
@@ -44,7 +44,7 @@
4444
"ci"
4545
],
4646
"dependencies": {
47-
"@modus/gimbal-core": "1.1.11",
47+
"@modus/gimbal-core": "1.1.12",
4848
"bytes": "3.1.0",
4949
"deepmerge": "4.0.0",
5050
"globby": "10.0.1",

packages/plugin-sqlite/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@modus/gimbal-plugin-sqlite",
3-
"version": "1.1.11",
3+
"version": "1.1.12",
44
"description": "SQLite storage helpers for Gimbal and Gimbal plugins",
55
"homepage": "https://github.com/ModusCreateOrg/gimbal#readme",
66
"license": "MIT",
@@ -32,7 +32,7 @@
3232
"url": "https://github.com/ModusCreateOrg/gimbal/issues"
3333
},
3434
"dependencies": {
35-
"@modus/gimbal-core": "1.1.11",
35+
"@modus/gimbal-core": "1.1.12",
3636
"deepmerge": "4.0.0",
3737
"mkdirp": "0.5.1",
3838
"sqlite3": "4.0.9"

packages/typings/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@modus/gimbal-typings",
33
"private": true,
4-
"version": "1.1.11",
4+
"version": "1.1.12",
55
"description": "A common node module that doesn't get published to npm holding the typings",
66
"homepage": "https://github.com/ModusCreateOrg/gimbal#readme",
77
"license": "MIT",

0 commit comments

Comments
 (0)