smath 1.8.4 → 1.8.6
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/dist/index.js +1 -3
- package/package.json +6 -8
- package/types/index.d.ts +1 -3
package/dist/index.js
CHANGED
|
@@ -3,9 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.SMath = void 0;
|
|
4
4
|
/**
|
|
5
5
|
* @packageDocumentation
|
|
6
|
-
* Small math function library
|
|
7
|
-
*
|
|
8
|
-
* Exports the public-facing API for `smath`
|
|
6
|
+
*  Small math function library
|
|
9
7
|
*/
|
|
10
8
|
/**
|
|
11
9
|
* Contains a small math function library including
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "smath",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.6",
|
|
4
4
|
"description": "Small math function library",
|
|
5
|
-
"homepage": "https://npm.nicfv.com/
|
|
5
|
+
"homepage": "https://npm.nicfv.com/",
|
|
6
6
|
"bin": "dist/bin.js",
|
|
7
7
|
"main": "dist/index.js",
|
|
8
8
|
"types": "types/index.d.ts",
|
|
@@ -11,11 +11,10 @@
|
|
|
11
11
|
"types"
|
|
12
12
|
],
|
|
13
13
|
"scripts": {
|
|
14
|
-
"build": "npm run postpack &&
|
|
15
|
-
"test": "tsc
|
|
16
|
-
"clean": "rm -rf node_modules package-lock.json && npm run postpack",
|
|
14
|
+
"build": "npm run postpack && tsc && node dist/test.js && rm dist/test.js types/test.d.ts",
|
|
15
|
+
"test": "tsc --noEmit",
|
|
17
16
|
"prepack": "npm run build",
|
|
18
|
-
"postpack": "rm -rf dist types
|
|
17
|
+
"postpack": "rm -rf dist types"
|
|
19
18
|
},
|
|
20
19
|
"keywords": [
|
|
21
20
|
"small",
|
|
@@ -57,7 +56,6 @@
|
|
|
57
56
|
"license": "MIT",
|
|
58
57
|
"devDependencies": {
|
|
59
58
|
"@types/node": "20.12.7",
|
|
60
|
-
"
|
|
61
|
-
"typedoc": "0.25.13"
|
|
59
|
+
"t6": "1.1.4"
|
|
62
60
|
}
|
|
63
61
|
}
|
package/types/index.d.ts
CHANGED