@ekz/lexical-history 0.40.0 → 0.40.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.
@@ -7,5 +7,5 @@
7
7
  */
8
8
 
9
9
  'use strict'
10
- const EkzLexicalHistory = process.env.NODE_ENV !== 'production' ? require('./EkzLexicalHistory.dev.js') : require('./EkzLexicalHistory.prod.js');
11
- module.exports = EkzLexicalHistory;
10
+ const LexicalHistory = process.env.NODE_ENV !== 'production' ? require('./LexicalHistory.dev.js') : require('./LexicalHistory.prod.js');
11
+ module.exports = LexicalHistory;
@@ -6,8 +6,8 @@
6
6
  *
7
7
  */
8
8
 
9
- import * as modDev from './EkzLexicalHistory.dev.mjs';
10
- import * as modProd from './EkzLexicalHistory.prod.mjs';
9
+ import * as modDev from './LexicalHistory.dev.mjs';
10
+ import * as modProd from './LexicalHistory.prod.mjs';
11
11
  const mod = process.env.NODE_ENV !== 'production' ? modDev : modProd;
12
12
  export const HistoryExtension = mod.HistoryExtension;
13
13
  export const SharedHistoryExtension = mod.SharedHistoryExtension;
@@ -6,7 +6,7 @@
6
6
  *
7
7
  */
8
8
 
9
- const mod = await (process.env.NODE_ENV !== 'production' ? import('./EkzLexicalHistory.dev.mjs') : import('./EkzLexicalHistory.prod.mjs'));
9
+ const mod = await (process.env.NODE_ENV !== 'production' ? import('./LexicalHistory.dev.mjs') : import('./LexicalHistory.prod.mjs'));
10
10
  export const HistoryExtension = mod.HistoryExtension;
11
11
  export const SharedHistoryExtension = mod.SharedHistoryExtension;
12
12
  export const createEmptyHistoryState = mod.createEmptyHistoryState;
package/package.json CHANGED
@@ -8,13 +8,13 @@
8
8
  "history"
9
9
  ],
10
10
  "license": "MIT",
11
- "version": "0.40.0",
11
+ "version": "0.40.1",
12
12
  "main": "LexicalHistory.js",
13
13
  "types": "index.d.ts",
14
14
  "dependencies": {
15
- "@ekz/lexical-extension": "0.40.0",
16
- "@ekz/lexical-utils": "0.40.0",
17
- "@ekz/lexical": "0.40.0"
15
+ "@ekz/lexical-extension": "0.40.1",
16
+ "@ekz/lexical-utils": "0.40.1",
17
+ "@ekz/lexical": "0.40.1"
18
18
  },
19
19
  "repository": {
20
20
  "type": "git",