@digital-realty/ix-list 1.2.12 → 1.3.1

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.
@@ -1 +1 @@
1
- import{LitElement,html}from"lit";import"@material/web/list/list.js";class IxList extends LitElement{render(){return html`<md-list><slot></slot></md-list>`}}window.customElements.define("ix-list",IxList);
1
+ import{LitElement as t,html as s}from"lit";import"@material/web/list/list.js";window.customElements.define("ix-list",class extends t{render(){return s` <md-list><slot></slot></md-list> `}});
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Webcomponent ix-list following open-wc recommendations",
4
4
  "license": "MIT",
5
5
  "author": "Digital Realty",
6
- "version": "1.2.12",
6
+ "version": "1.3.1",
7
7
  "type": "module",
8
8
  "main": "dist/index.js",
9
9
  "module": "dist/index.js",
@@ -20,8 +20,8 @@
20
20
  "start": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wds\"",
21
21
  "build": "tsc && npm run analyze -- --exclude dist && rollup -c",
22
22
  "prepublish": "tsc && npm run analyze -- --exclude dist",
23
- "lint": "eslint --ext .ts,.html . --ignore-path .gitignore && prettier \"**/*.ts\" --check --ignore-path .gitignore",
24
- "format": "eslint --ext .ts,.html . --fix --ignore-path .gitignore && prettier \"**/*.ts\" --write --ignore-path .gitignore",
23
+ "lint": "eslint --ext .ts,.html . && prettier \"**/*.ts\" --check --ignore-path .gitignore",
24
+ "format": "eslint --ext .ts,.html . --fix && prettier \"**/*.ts\" --write --ignore-path .gitignore",
25
25
  "test": "tsc && wtr --coverage",
26
26
  "test:watch": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wtr --watch\""
27
27
  },
@@ -36,32 +36,26 @@
36
36
  },
37
37
  "devDependencies": {
38
38
  "@custom-elements-manifest/analyzer": "^0.4.17",
39
- "@open-wc/eslint-config": "^9.2.1",
40
39
  "@open-wc/testing": "^3.1.6",
41
- "@typescript-eslint/eslint-plugin": "^5.48.0",
42
- "@typescript-eslint/parser": "^5.48.0",
40
+ "@rollup/plugin-terser": "^1.0.0",
41
+ "@typescript-eslint/eslint-plugin": "^8.58.2",
42
+ "@typescript-eslint/parser": "^8.58.2",
43
43
  "@web/dev-server": "^0.4.6",
44
44
  "@web/test-runner": "^0.20.2",
45
- "concurrently": "^9.1.0",
46
- "eslint": "^8.31.0",
45
+ "concurrently": "^9.2.1",
46
+ "eslint": "^9.39.4",
47
47
  "eslint-config-prettier": "^8.3.0",
48
48
  "husky": "^4.3.8",
49
49
  "lint-staged": "^10.5.4",
50
50
  "prettier": "^2.4.1",
51
51
  "rollup": "^4.29.1",
52
- "rollup-plugin-minify-html-literals": "^1.2.6",
53
52
  "rollup-plugin-summary": "^2.0.0",
54
- "rollup-plugin-uglify": "^6.0.4",
55
53
  "tslib": "^2.3.1",
56
54
  "typescript": "^4.5.2"
57
55
  },
58
56
  "customElements": "custom-elements.json",
59
57
  "eslintConfig": {
60
58
  "parser": "@typescript-eslint/parser",
61
- "extends": [
62
- "@open-wc",
63
- "prettier"
64
- ],
65
59
  "plugins": [
66
60
  "@typescript-eslint"
67
61
  ],
@@ -102,5 +96,5 @@
102
96
  "README.md",
103
97
  "LICENSE"
104
98
  ],
105
- "gitHead": "b47ba9e880c386ecf579ab21a118f94221cd1e1c"
99
+ "gitHead": "da06737d6707fd3d4ef898ba0fa632e7b3ed8019"
106
100
  }