@khanacademy/kmath 0.1.12 → 0.1.14
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/README.md +4 -5
- package/dist/es/index.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
</h1>
|
|
1
|
+
# @khanacademy/kmath
|
|
2
|
+
|
|
3
|
+
Javascript Numeric Math Utilities
|
|
5
4
|
|
|
6
5
|
## Overview
|
|
7
6
|
|
|
@@ -34,7 +33,7 @@ pure and allocates a new array for the return value.
|
|
|
34
33
|
## Getting started
|
|
35
34
|
|
|
36
35
|
After cloning or downloading kmath, you can install it by running
|
|
37
|
-
`
|
|
36
|
+
`yarn` or `make install`.
|
|
38
37
|
|
|
39
38
|
To play around with the available interfaces, you can load kmath
|
|
40
39
|
into a Node repl:
|
package/dist/es/index.js
CHANGED
|
@@ -3,7 +3,7 @@ import _ from 'underscore';
|
|
|
3
3
|
|
|
4
4
|
// This file is processed by a Rollup plugin (replace) to inject the production
|
|
5
5
|
const libName = "@khanacademy/kmath";
|
|
6
|
-
const libVersion = "0.1.
|
|
6
|
+
const libVersion = "0.1.14";
|
|
7
7
|
addLibraryVersionToPerseusDebug(libName, libVersion);
|
|
8
8
|
|
|
9
9
|
/**
|
package/dist/index.js
CHANGED
|
@@ -11,7 +11,7 @@ var ___default = /*#__PURE__*/_interopDefaultLegacy(_);
|
|
|
11
11
|
|
|
12
12
|
// This file is processed by a Rollup plugin (replace) to inject the production
|
|
13
13
|
const libName = "@khanacademy/kmath";
|
|
14
|
-
const libVersion = "0.1.
|
|
14
|
+
const libVersion = "0.1.14";
|
|
15
15
|
perseusCore.addLibraryVersionToPerseusDebug(libName, libVersion);
|
|
16
16
|
|
|
17
17
|
/**
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "Khan Academy's Javascript Numeric Math Utilities",
|
|
4
4
|
"author": "Khan Academy",
|
|
5
5
|
"license": "MIT",
|
|
6
|
-
"version": "0.1.
|
|
6
|
+
"version": "0.1.14",
|
|
7
7
|
"publishConfig": {
|
|
8
8
|
"access": "public"
|
|
9
9
|
},
|
|
@@ -24,10 +24,10 @@
|
|
|
24
24
|
"test": "bash -c 'yarn --silent --cwd \"../..\" test ${@:0} $($([[ ${@: -1} = -* ]] || [[ ${@: -1} = bash ]]) && echo $PWD)'"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@khanacademy/perseus-core": "1.
|
|
27
|
+
"@khanacademy/perseus-core": "1.5.1"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"perseus-build-settings": "^0.
|
|
30
|
+
"perseus-build-settings": "^0.4.1",
|
|
31
31
|
"underscore": "1.4.4"
|
|
32
32
|
},
|
|
33
33
|
"peerDependencies": {
|