@maicol07/material-web 2.2.0 → 2.3.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.
Files changed (1) hide show
  1. package/package.json +53 -16
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maicol07/material-web",
3
- "version": "2.2.0",
3
+ "version": "2.3.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -55,7 +55,9 @@
55
55
  "testing/harness.{js,js.map,d.ts}",
56
56
  "testing/transform-pseudo-classes.{js,js.map,d.ts}"
57
57
  ],
58
- "workspaces": ["catalog"],
58
+ "workspaces": [
59
+ "catalog"
60
+ ],
59
61
  "dependencies": {
60
62
  "lit": "^2.8.0 || ^3.0.0",
61
63
  "tslib": "^2.4.0"
@@ -83,7 +85,9 @@
83
85
  },
84
86
  "wireit": {
85
87
  "build": {
86
- "dependencies": ["build:ts"]
88
+ "dependencies": [
89
+ "build:ts"
90
+ ]
87
91
  },
88
92
  "build:ts": {
89
93
  "command": "tsc --pretty",
@@ -107,27 +111,51 @@
107
111
  "!scripts/"
108
112
  ],
109
113
  "clean": "if-file-deleted",
110
- "dependencies": ["build:css-to-ts"]
114
+ "dependencies": [
115
+ "build:css-to-ts"
116
+ ]
111
117
  },
112
118
  "build:css-to-ts": {
113
119
  "command": "find . \\( -path ./.wireit -o -path ./node_modules -o -path ./catalog \\) -prune -o -name '*-styles.css' -print | xargs -L1 node scripts/css-to-ts.js",
114
- "files": ["**/*-styles.css", "!catalog/"],
115
- "output": ["**/*-styles.ts", "!catalog/"],
116
- "dependencies": ["build:scripts", "build:sass"]
120
+ "files": [
121
+ "**/*-styles.css",
122
+ "!catalog/"
123
+ ],
124
+ "output": [
125
+ "**/*-styles.ts",
126
+ "!catalog/"
127
+ ],
128
+ "dependencies": [
129
+ "build:scripts",
130
+ "build:sass"
131
+ ]
117
132
  },
118
133
  "build:sass": {
119
134
  "command": "sass --style=compressed --load-path=node_modules --load-path=node_modules/sass-true/sass $(ls -d */ | grep -vE 'node_modules|catalog')",
120
- "files": ["**/*.scss", "!catalog/"],
121
- "output": ["**/*.css", "**/*.css.map", "!catalog/"]
135
+ "files": [
136
+ "**/*.scss",
137
+ "!catalog/"
138
+ ],
139
+ "output": [
140
+ "**/*.css",
141
+ "**/*.css.map",
142
+ "!catalog/"
143
+ ]
122
144
  },
123
145
  "test": {
124
146
  "command": "wtr",
125
- "dependencies": ["build:ts"],
126
- "files": ["web-test-runner.config.js"],
147
+ "dependencies": [
148
+ "build:ts"
149
+ ],
150
+ "files": [
151
+ "web-test-runner.config.js"
152
+ ],
127
153
  "output": []
128
154
  },
129
155
  "build:catalog": {
130
- "dependencies": ["./catalog:build:prod"]
156
+ "dependencies": [
157
+ "./catalog:build:prod"
158
+ ]
131
159
  },
132
160
  "build:scripts": {
133
161
  "command": "tsc -b scripts/tsconfig.json --pretty",
@@ -156,13 +184,22 @@
156
184
  "!scripts/",
157
185
  "scripts/analyzer/update-docs.js"
158
186
  ],
159
- "output": ["custom-elements.json", "web-types.json"],
160
- "dependencies": ["build:scripts"]
187
+ "output": [
188
+ "custom-elements.json",
189
+ "web-types.json"
190
+ ],
191
+ "dependencies": [
192
+ "build:scripts"
193
+ ]
161
194
  },
162
195
  "update-size": {
163
196
  "command": "node scripts/size/update-size.js",
164
- "dependencies": ["build:scripts", "build"]
197
+ "dependencies": [
198
+ "build:scripts",
199
+ "build"
200
+ ]
165
201
  }
166
202
  },
167
- "web-types": "./web-types.json"
203
+ "web-types": "./web-types.json",
204
+ "packageManager": "pnpm@10.7.0+sha512.6b865ad4b62a1d9842b61d674a393903b871d9244954f652b8842c2b553c72176b278f64c463e52d40fff8aba385c235c8c9ecf5cc7de4fd78b8bb6d49633ab6"
168
205
  }