@khanacademy/simple-markdown 0.10.3 → 0.11.0
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/CHANGELOG.md +15 -0
- package/dist/es/index.js +4 -1
- package/dist/es/index.js.map +1 -1
- package/dist/index.js +5 -2
- package/dist/index.js.map +1 -1
- package/package.json +4 -6
- package/tsconfig-build.tsbuildinfo +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @khanacademy/simple-markdown
|
|
2
2
|
|
|
3
|
+
## 0.11.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#802](https://github.com/Khan/perseus/pull/802) [`57e0e18b`](https://github.com/Khan/perseus/commit/57e0e18bd3729cde2e35cfa4ec40b67a5700049c) Thanks [@jeremywiebe](https://github.com/jeremywiebe)! - Remove unused dependencies: size-limit and uglify-js
|
|
8
|
+
|
|
9
|
+
* [#802](https://github.com/Khan/perseus/pull/802) [`57e0e18b`](https://github.com/Khan/perseus/commit/57e0e18bd3729cde2e35cfa4ec40b67a5700049c) Thanks [@jeremywiebe](https://github.com/jeremywiebe)! - Remove unused dependencies: size-limit and uglify-js
|
|
10
|
+
|
|
11
|
+
## 0.10.4
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies [[`79403e06`](https://github.com/Khan/perseus/commit/79403e06eedb597d7818d6c858bbba6f51ff3fe1)]:
|
|
16
|
+
- @khanacademy/perseus-core@1.3.0
|
|
17
|
+
|
|
3
18
|
## 0.10.3
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
package/dist/es/index.js
CHANGED
|
@@ -2,13 +2,16 @@ import { addLibraryVersionToPerseusDebug } from '@khanacademy/perseus-core';
|
|
|
2
2
|
|
|
3
3
|
// This file is processed by a Rollup plugin (replace) to inject the production
|
|
4
4
|
const libName = "@khanacademy/simple-markdown";
|
|
5
|
-
const libVersion = "0.
|
|
5
|
+
const libVersion = "0.11.0";
|
|
6
6
|
addLibraryVersionToPerseusDebug(libName, libVersion);
|
|
7
7
|
|
|
8
8
|
/* eslint-disable prefer-spread, no-regex-spaces, @typescript-eslint/no-unused-vars, guard-for-in, no-console, no-var */
|
|
9
9
|
|
|
10
10
|
// Type Definitions:
|
|
11
11
|
|
|
12
|
+
// We want to clarify our defaultRules types a little bit more so clients can
|
|
13
|
+
// reuse defaultRules built-ins. So we make some stronger guarantess when
|
|
14
|
+
// we can:
|
|
12
15
|
// End TypeScript Definitions
|
|
13
16
|
|
|
14
17
|
var CR_NEWLINE_R = /\r\n?/g;
|