@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.
- package/package.json +7 -1
- package/CHANGELOG.md +0 -78
- package/dts/browser.d.ts +0 -4
- package/dts/enums/area.d.ts +0 -16
- package/dts/helpers/dissect/index.d.ts +0 -1
- package/dts/helpers/dissect/styles.d.ts +0 -1
- package/dts/helpers/typography/index.d.ts +0 -2
- package/dts/helpers/typography/position.d.ts +0 -4
- package/dts/helpers/typography/template.d.ts +0 -1
- package/dts/index.d.ts +0 -53
- package/dts/interfaces/global.d.ts +0 -6
- package/dts/lib/attributes.d.ts +0 -2
- package/dts/lib/classnames.d.ts +0 -4
- package/dts/lib/constants.d.ts +0 -3
- package/dts/lib/css.d.ts +0 -6
- package/dts/lib/debounce.d.ts +0 -3
- package/dts/lib/node.d.ts +0 -2
- package/dts/lib/number.d.ts +0 -1
- package/dts/lib/position.d.ts +0 -6
- package/dts/lib/resize.d.ts +0 -1
- package/dts/lib/styles.d.ts +0 -2
- package/dts/tasks/dissect.d.ts +0 -2
- package/dts/tasks/index.d.ts +0 -4
- package/dts/tasks/measure.d.ts +0 -1
- package/dts/tasks/spec.d.ts +0 -2
- package/dts/tasks/typography.d.ts +0 -2
- package/dts/types/css.d.ts +0 -19
- package/dts/types/speccer.d.ts +0 -5
- package/src/browser.ts +0 -96
- package/src/enums/area.ts +0 -17
- package/src/helpers/dissect/index.ts +0 -1
- package/src/helpers/dissect/styles.ts +0 -154
- package/src/helpers/typography/index.ts +0 -3
- package/src/helpers/typography/position.ts +0 -54
- package/src/helpers/typography/template.ts +0 -27
- package/src/index.ts +0 -36
- package/src/interfaces/global.ts +0 -7
- package/src/lib/attributes.ts +0 -18
- package/src/lib/classnames.ts +0 -43
- package/src/lib/constants.ts +0 -8
- package/src/lib/css.ts +0 -45
- package/src/lib/debounce.ts +0 -29
- package/src/lib/node.ts +0 -8
- package/src/lib/number.ts +0 -4
- package/src/lib/position.ts +0 -16
- package/src/lib/resize.ts +0 -14
- package/src/lib/styles.ts +0 -31
- package/src/styles/anatomy.styl +0 -274
- package/src/styles/index.styl +0 -72
- package/src/styles/measure.styl +0 -88
- package/src/styles/spacing.styl +0 -142
- package/src/styles/typography.styl +0 -85
- package/src/tasks/dissect.ts +0 -46
- package/src/tasks/index.ts +0 -7
- package/src/tasks/measure.ts +0 -82
- package/src/tasks/spec.ts +0 -170
- package/src/tasks/typography.ts +0 -45
- package/src/types/css.ts +0 -20
- package/src/types/speccer.ts +0 -6
- package/tsconfig.json +0 -21
- 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
|
-
}
|