@gravity-ui/markdown-editor 14.7.0 → 14.8.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/build/cjs/version.js +1 -1
- package/build/esm/version.js +1 -1
- package/package.json +10 -2
package/build/cjs/version.js
CHANGED
|
@@ -2,4 +2,4 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.VERSION = void 0;
|
|
4
4
|
/** During build process, the current version will be injected here */
|
|
5
|
-
exports.VERSION = typeof '14.
|
|
5
|
+
exports.VERSION = typeof '14.8.0' !== 'undefined' ? '14.8.0' : 'unknown';
|
package/build/esm/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
/** During build process, the current version will be injected here */
|
|
2
|
-
export const VERSION = typeof '14.
|
|
2
|
+
export const VERSION = typeof '14.8.0' !== 'undefined' ? '14.8.0' : 'unknown';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gravity-ui/markdown-editor",
|
|
3
|
-
"version": "14.
|
|
3
|
+
"version": "14.8.0",
|
|
4
4
|
"description": "Markdown wysiwyg and markup editor",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -313,5 +313,13 @@
|
|
|
313
313
|
"prettier --write"
|
|
314
314
|
],
|
|
315
315
|
"*.{md,json,yaml,yml}": "prettier --write"
|
|
316
|
-
}
|
|
316
|
+
},
|
|
317
|
+
"sideEffects": [
|
|
318
|
+
"*.css",
|
|
319
|
+
"*.scss",
|
|
320
|
+
"src/shortcuts/index.ts",
|
|
321
|
+
"src/shortcuts/default.ts",
|
|
322
|
+
"build/**/shortcuts/index.js",
|
|
323
|
+
"build/**/shortcuts/default.js"
|
|
324
|
+
]
|
|
317
325
|
}
|