@jhuix/showdowns 0.6.9 → 0.6.11
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jhuix/showdowns",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.11",
|
|
4
4
|
"description": "A lib that make markdown to html with some extensions of showdown.js.",
|
|
5
5
|
"main": "dist/showdowns.min.js",
|
|
6
6
|
"browser": "dist/showdowns.min.js",
|
|
@@ -8,12 +8,12 @@
|
|
|
8
8
|
"unpkg": "dist/showdowns.min.js",
|
|
9
9
|
"style": "dist/showdowns.min.css",
|
|
10
10
|
"scripts": {
|
|
11
|
-
"build": "npm run build:release && npm run build:umd && npm run build:cjs
|
|
11
|
+
"build": "npm run build:release && npm run build:umd && npm run build:cjs",
|
|
12
12
|
"build:umd": "rollup -c --bundleConfigAsCjs",
|
|
13
13
|
"build:umd:min": "rollup -c --bundleConfigAsCjs --environment MIN",
|
|
14
14
|
"build:cjs": "rollup -c --bundleConfigAsCjs --environment TARGET:cjs",
|
|
15
15
|
"build:cjs:min": "rollup -c --bundleConfigAsCjs --environment MIN,TARGET:cjs",
|
|
16
|
-
"build:release": "npm run clean && npm run build:umd:min && npm run build:cjs:min",
|
|
16
|
+
"build:release": "npm run clean && npm run build:umd:min && npm run build:cjs:min && npm run build:demo",
|
|
17
17
|
"build:demo": "rimraf docs && rollup -c --bundleConfigAsCjs --environment DEMO,MIN",
|
|
18
18
|
"build:dev": "npm run build:umd && npm run build:cjs",
|
|
19
19
|
"prepublishOnly": "npm run build:release",
|