@phun-ky/speccer 6.0.0 → 6.0.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.
Files changed (61) hide show
  1. package/package.json +7 -1
  2. package/CHANGELOG.md +0 -78
  3. package/dts/browser.d.ts +0 -4
  4. package/dts/enums/area.d.ts +0 -16
  5. package/dts/helpers/dissect/index.d.ts +0 -1
  6. package/dts/helpers/dissect/styles.d.ts +0 -1
  7. package/dts/helpers/typography/index.d.ts +0 -2
  8. package/dts/helpers/typography/position.d.ts +0 -4
  9. package/dts/helpers/typography/template.d.ts +0 -1
  10. package/dts/index.d.ts +0 -53
  11. package/dts/interfaces/global.d.ts +0 -6
  12. package/dts/lib/attributes.d.ts +0 -2
  13. package/dts/lib/classnames.d.ts +0 -4
  14. package/dts/lib/constants.d.ts +0 -3
  15. package/dts/lib/css.d.ts +0 -6
  16. package/dts/lib/debounce.d.ts +0 -3
  17. package/dts/lib/node.d.ts +0 -2
  18. package/dts/lib/number.d.ts +0 -1
  19. package/dts/lib/position.d.ts +0 -6
  20. package/dts/lib/resize.d.ts +0 -1
  21. package/dts/lib/styles.d.ts +0 -2
  22. package/dts/tasks/dissect.d.ts +0 -2
  23. package/dts/tasks/index.d.ts +0 -4
  24. package/dts/tasks/measure.d.ts +0 -1
  25. package/dts/tasks/spec.d.ts +0 -2
  26. package/dts/tasks/typography.d.ts +0 -2
  27. package/dts/types/css.d.ts +0 -19
  28. package/dts/types/speccer.d.ts +0 -5
  29. package/src/browser.ts +0 -96
  30. package/src/enums/area.ts +0 -17
  31. package/src/helpers/dissect/index.ts +0 -1
  32. package/src/helpers/dissect/styles.ts +0 -154
  33. package/src/helpers/typography/index.ts +0 -3
  34. package/src/helpers/typography/position.ts +0 -54
  35. package/src/helpers/typography/template.ts +0 -27
  36. package/src/index.ts +0 -36
  37. package/src/interfaces/global.ts +0 -7
  38. package/src/lib/attributes.ts +0 -18
  39. package/src/lib/classnames.ts +0 -43
  40. package/src/lib/constants.ts +0 -8
  41. package/src/lib/css.ts +0 -45
  42. package/src/lib/debounce.ts +0 -29
  43. package/src/lib/node.ts +0 -8
  44. package/src/lib/number.ts +0 -4
  45. package/src/lib/position.ts +0 -16
  46. package/src/lib/resize.ts +0 -14
  47. package/src/lib/styles.ts +0 -31
  48. package/src/styles/anatomy.styl +0 -274
  49. package/src/styles/index.styl +0 -72
  50. package/src/styles/measure.styl +0 -88
  51. package/src/styles/spacing.styl +0 -142
  52. package/src/styles/typography.styl +0 -85
  53. package/src/tasks/dissect.ts +0 -46
  54. package/src/tasks/index.ts +0 -7
  55. package/src/tasks/measure.ts +0 -82
  56. package/src/tasks/spec.ts +0 -170
  57. package/src/tasks/typography.ts +0 -45
  58. package/src/types/css.ts +0 -20
  59. package/src/types/speccer.ts +0 -6
  60. package/tsconfig.json +0 -21
  61. package/tslint.json +0 -23
package/tsconfig.json DELETED
@@ -1,21 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "target": "es2021",
4
- "lib": ["ES2021", "dom"],
5
- "sourceMap": true,
6
- "declaration": true,
7
- "declarationDir": "dts",
8
- "moduleResolution": "node",
9
- "rootDir": "src",
10
- "noImplicitReturns": true,
11
- "noImplicitThis": true,
12
- "noImplicitAny": false,
13
- "strictNullChecks": true,
14
- "esModuleInterop": true,
15
- "baseUrl": "src/",
16
- "typeRoots": ["./node_modules/@types"],
17
- "resolveJsonModule": true,
18
- "types": ["jest", "node", "./node_modules/network-information-types"]
19
- },
20
- "exclude": ["node_modules", "build", "dist", "./speccer.js", "scripts", "tests"]
21
- }
package/tslint.json DELETED
@@ -1,23 +0,0 @@
1
- {
2
- "defaultSeverity": "error",
3
- "extends": ["tslint:recommended"],
4
- "jsRules": {},
5
- "rules": {
6
- "ordered-imports": false,
7
- "object-literal-sort-keys": false,
8
- "member-ordering": false,
9
- "await-promise": false,
10
- "interface-name": false,
11
- "quotemark": false,
12
- "curly": false,
13
- "member-access": [true, "no-public"],
14
- "semicolon": false,
15
- "no-trailing-whitespace": false,
16
- "no-console": false,
17
- "jsx-alignment": false,
18
- "jsx-wrap-multiline": false,
19
- "jsx-no-lambda": false,
20
- "jsx-no-multiline-js": false
21
- },
22
- "rulesDirectory": []
23
- }