glyphix 1.0.27 → 1.0.29

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/bin/glyphix.js CHANGED
@@ -196,9 +196,9 @@ function lintFile(rootPath) {
196
196
  overrideConfig: {
197
197
  rules: {
198
198
  "no-console": "off",
199
- "prettier/prettier": "warn",
199
+ "prettier/prettier": "off",
200
200
  "@typescript-eslint/ban-ts-comment": "warn",
201
- "@typescript-eslint/no-explicit-any": "warn",
201
+ "@typescript-eslint/no-explicit-any": "off",
202
202
  "@typescript-eslint/no-unused-vars": "warn",
203
203
  quotes: "off"
204
204
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "glyphix",
3
- "version": "1.0.27",
3
+ "version": "1.0.29",
4
4
  "main": "lib/index.js",
5
5
  "types": "types/index.d.ts",
6
6
  "files": [
package/types/index.d.ts CHANGED
@@ -47,7 +47,7 @@ type Computed<C, D extends Data> = {
47
47
  type Watches<W, D extends Data> = {
48
48
  [K in keyof W]: K extends keyof D
49
49
  ? ((newValue: D[K], oldValue: D[K]) => void) | undefined
50
- : never;
50
+ : any;
51
51
  };
52
52
 
53
53
  type Methods<M, D extends Data> = {