@shgysk8zer0/importmap 1.0.7 → 1.0.9

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 CHANGED
@@ -6,6 +6,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [v1.0.9] - 2023-06-28
10
+
11
+ ### Added
12
+ - Add markdown related imports
13
+
14
+ ### Changed
15
+ - Use `@kernvalley/components` instead of `@shgysk8zer0/components/krv`
16
+
17
+ ### Fixed
18
+ - Fix some import names to match their actual names
19
+
20
+ ## [v1.0.8] - 2023-06-25
21
+
22
+ ### Changed
23
+ - Update `@shgys8zer0/jswaggersheets`
24
+
9
25
  ## [v1.0.7] - 2023-06-25
10
26
 
11
27
  ### Fixed
package/index.cjs CHANGED
@@ -9,13 +9,15 @@ const versions = {
9
9
  '@shgysk8zer0/polyfills': '0.1.2',
10
10
  '@shgysk8zer0/components': '0.0.9',
11
11
  '@shgysk8zer0/http-status': '1.0.2',
12
- '@shgysk8zer0/jswaggersheets': '1.0.3',
13
- '@kernvalley/components': '1.0.1',
12
+ '@shgysk8zer0/jswaggersheets': '1.0.4',
13
+ '@kernvalley/components': '1.0.2',
14
14
  '@webcomponents/custom-elements': '1.6.0',
15
15
  'leaflet': '1.9.4',
16
16
  'firebase': '9.22.2',
17
17
  'urlpattern-polyfill': '9.0.0',
18
18
  'highlight.js': '11.8.0',
19
+ 'marked': '5.1.0',
20
+ 'marked-highlight': '2.0.1',
19
21
  };
20
22
 
21
23
  const imports = {
@@ -33,6 +35,8 @@ const imports = {
33
35
  'urlpattern-polyfill': `https://unpkg.com/urlpattern-polyfill@${versions['urlpattern-polyfill']}/index.js`,
34
36
  'highlight.js': `https://unpkg.com/@highlightjs/cdn-assets@${versions['highlight.js']}/es/highlight.min.js`,
35
37
  'highlight.js/': `https://unpkg.com/@highlightjs/cdn-assets@${versions['lighlight.js']}/`,
38
+ 'marked': `https://unpkg.com/${versions.marked}/src/marked.js`,
39
+ 'marked-highlight': `https://unpkg.com/marked-highlight@${versions['marked-highlight']}/src/index.js`
36
40
  };
37
41
 
38
42
  const scope = {};
package/index.js CHANGED
@@ -17,6 +17,8 @@ export const imports = {
17
17
  'urlpattern-polyfill': `https://unpkg.com/urlpattern-polyfill@${versions['urlpattern-polyfill']}/index.js`,
18
18
  'highlight.js': `https://unpkg.com/@highlightjs/cdn-assets@${versions['highlight.js']}/es/highlight.min.js`,
19
19
  'highlight.js/': `https://unpkg.com/@highlightjs/cdn-assets@${versions['lighlight.js']}/`,
20
+ 'marked': `https://unpkg.com/${versions.marked}/src/marked.js`,
21
+ 'marked-highlight': `https://unpkg.com/marked-highlight@${versions['marked-highlight']}/src/index.js`
20
22
  };
21
23
 
22
24
  export const scope = {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shgysk8zer0/importmap",
3
- "version": "1.0.7",
3
+ "version": "1.0.9",
4
4
  "engines": {
5
5
  "node": ">=18.0.0"
6
6
  },
package/versions.js CHANGED
@@ -4,11 +4,13 @@ export const versions = {
4
4
  '@shgysk8zer0/polyfills': '0.1.2',
5
5
  '@shgysk8zer0/components': '0.0.9',
6
6
  '@shgysk8zer0/http-status': '1.0.2',
7
- '@shgysk8zer0/jswaggersheets': '1.0.3',
8
- '@kernvalley/components': '1.0.1',
7
+ '@shgysk8zer0/jswaggersheets': '1.0.4',
8
+ '@kernvalley/components': '1.0.2',
9
9
  '@webcomponents/custom-elements': '1.6.0',
10
10
  'leaflet': '1.9.4',
11
11
  'firebase': '9.22.2',
12
12
  'urlpattern-polyfill': '9.0.0',
13
13
  'highlight.js': '11.8.0',
14
+ 'marked': '5.1.0',
15
+ 'marked-highlight': '2.0.1',
14
16
  };