@stackoverflow/stacks 1.7.1 → 1.8.0

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/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "type": "git",
6
6
  "url": "https://github.com/StackExchange/Stacks.git"
7
7
  },
8
- "version": "1.7.1",
8
+ "version": "1.8.0",
9
9
  "files": [
10
10
  "dist",
11
11
  "lib"
@@ -23,6 +23,7 @@
23
23
  "start:webpack": "webpack --watch --config ./docs/webpack.config.js",
24
24
  "start:eleventy": "cd ./docs && eleventy --serve",
25
25
  "test": "web-test-runner",
26
+ "test:a11y": "web-test-runner --group=a11y",
26
27
  "test:unit": "web-test-runner --group=unit",
27
28
  "test:unit:watch": "web-test-runner --group=unit --watch",
28
29
  "test:visual": "web-test-runner --group=visual",
@@ -39,48 +40,48 @@
39
40
  "@popperjs/core": "^2.11.6"
40
41
  },
41
42
  "devDependencies": {
42
- "@11ty/eleventy": "^1.0.2",
43
+ "@11ty/eleventy": "^2.0.0",
43
44
  "@highlightjs/cdn-assets": "^11.7.0",
44
45
  "@open-wc/testing": "^3.1.7",
45
46
  "@rollup/plugin-commonjs": "^24.0.1",
46
47
  "@rollup/plugin-replace": "^5.0.2",
47
- "@stackoverflow/stacks-editor": "^0.8.4",
48
- "@stackoverflow/stacks-icons": "^5.0.2",
49
- "@testing-library/dom": "^8.19.1",
48
+ "@stackoverflow/stacks-editor": "^0.8.5",
49
+ "@stackoverflow/stacks-icons": "^5.3.1",
50
+ "@testing-library/dom": "^9.0.0",
50
51
  "@testing-library/user-event": "^14.4.3",
51
- "@typescript-eslint/eslint-plugin": "^5.47.1",
52
- "@typescript-eslint/parser": "^5.48.2",
52
+ "@typescript-eslint/eslint-plugin": "^5.52.0",
53
+ "@typescript-eslint/parser": "^5.52.0",
53
54
  "@web/dev-server-esbuild": "^0.3.3",
54
55
  "@web/dev-server-rollup": "0.3.21",
55
56
  "@web/test-runner": "^0.15.0",
56
57
  "@web/test-runner-playwright": "^0.9.0",
57
58
  "@web/test-runner-visual-regression": "^0.7.0",
58
59
  "concurrently": "^7.6.0",
59
- "css-loader": "^6.7.2",
60
+ "css-loader": "^6.7.3",
60
61
  "cssnano": "^5.1.14",
61
62
  "docsearch.js": "^2.6.3",
62
63
  "eleventy-plugin-highlightjs": "^1.1.0",
63
64
  "eleventy-plugin-nesting-toc": "^1.3.0",
64
- "eslint": "^8.31.0",
65
+ "eslint": "^8.34.0",
65
66
  "eslint-config-prettier": "^8.6.0",
66
67
  "eslint-plugin-no-unsanitized": "^4.0.2",
67
- "jquery": "^3.6.1",
68
+ "jquery": "^3.6.3",
68
69
  "less-loader": "^11.1.0",
69
70
  "list.js": "^2.3.1",
70
71
  "markdown-it": "^13.0.1",
71
72
  "mini-css-extract-plugin": "^2.7.2",
72
73
  "postcss-less": "^6.0.0",
73
74
  "postcss-loader": "^7.0.2",
74
- "prettier": "^2.8.2",
75
+ "prettier": "^2.8.4",
75
76
  "rollup-plugin-postcss": "^4.0.2",
76
- "stylelint": "^14.16.0",
77
- "stylelint-config-recommended": "^9.0.0",
78
- "stylelint-config-standard": "^29.0.0",
77
+ "stylelint": "^15.2.0",
78
+ "stylelint-config-recommended": "^10.0.1",
79
+ "stylelint-config-standard": "^30.0.1",
79
80
  "terser-webpack-plugin": "^5.3.6",
80
81
  "ts-loader": "^9.4.2",
81
- "typescript": "^4.9.4",
82
+ "typescript": "^4.9.5",
82
83
  "webpack": "^5.75.0",
83
- "webpack-cli": "^5.0.0",
84
+ "webpack-cli": "^5.0.1",
84
85
  "webpack-merge": "^5.8.0"
85
86
  },
86
87
  "browserslist": [
@@ -1,12 +0,0 @@
1
- // import { html, fixture } from "@open-wc/testing";
2
- // import { visualDiff } from "@web/test-runner-visual-regression";
3
- // import "../ts/index";
4
-
5
- // describe("s-btn", () => {
6
- // it("should not introduce visual regressions for loading button", async () => {
7
- // const btn = await fixture(html`
8
- // <button class="s-btn is-loading" type="button">Loading</button>
9
- // `);
10
- // await visualDiff(btn, "s-btn-is-loading");
11
- // });
12
- // });