@shgysk8zer0/importmap 1.0.8 → 1.0.10

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.10] - 2023-06-28
10
+
11
+ ### Fixed
12
+ - Add missing updates to versions
13
+
14
+ ## [v1.0.9] - 2023-06-28
15
+
16
+ ### Added
17
+ - Add markdown related imports
18
+
19
+ ### Changed
20
+ - Use `@kernvalley/components` instead of `@shgysk8zer0/components/krv`
21
+
22
+ ### Fixed
23
+ - Fix some import names to match their actual names
24
+
9
25
  ## [v1.0.8] - 2023-06-25
10
26
 
11
27
  ### Changed
package/index.cjs CHANGED
@@ -4,18 +4,20 @@ var promises = require('node:fs/promises');
4
4
  var node_crypto = require('node:crypto');
5
5
 
6
6
  const versions = {
7
- '@shgysk8zer0/kazoo': '0.0.16',
7
+ '@shgysk8zer0/kazoo': '0.0.17',
8
8
  '@shgysk8zer0/konami': '1.0.10',
9
9
  '@shgysk8zer0/polyfills': '0.1.2',
10
- '@shgysk8zer0/components': '0.0.9',
10
+ '@shgysk8zer0/components': '0.0.12',
11
11
  '@shgysk8zer0/http-status': '1.0.2',
12
12
  '@shgysk8zer0/jswaggersheets': '1.0.4',
13
- '@kernvalley/components': '1.0.1',
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.8",
3
+ "version": "1.0.10",
4
4
  "engines": {
5
5
  "node": ">=18.0.0"
6
6
  },
package/versions.js CHANGED
@@ -1,14 +1,16 @@
1
1
  export const versions = {
2
- '@shgysk8zer0/kazoo': '0.0.16',
2
+ '@shgysk8zer0/kazoo': '0.0.17',
3
3
  '@shgysk8zer0/konami': '1.0.10',
4
4
  '@shgysk8zer0/polyfills': '0.1.2',
5
- '@shgysk8zer0/components': '0.0.9',
5
+ '@shgysk8zer0/components': '0.0.12',
6
6
  '@shgysk8zer0/http-status': '1.0.2',
7
7
  '@shgysk8zer0/jswaggersheets': '1.0.4',
8
- '@kernvalley/components': '1.0.1',
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
  };