@caweb/template 1.0.4 → 1.0.5

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
@@ -1,3 +1,6 @@
1
+ v1.0.5
2
+ - Fixed issue with search.html
3
+
1
4
  v1.0.4
2
5
  - Updated logo.png so that it uses a .png instead of .webp
3
6
  - Updated content/index.html to provide instructions
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@caweb/template",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "author": "CAWebPublishing",
5
5
  "description": "CAWebPublishing Template",
6
6
  "license": "ISC",
@@ -4,16 +4,16 @@
4
4
  <title>{{ title }}</title>
5
5
  {{#if scheme }}
6
6
  <!-- Icon Font Library -->
7
- <link rel="stylesheet" href="node_modules/@caweb/html-webpack-plugin/build/font-only.css" />
7
+ <link rel="stylesheet" href="node_modules/@caweb/icon-library/build/font-only.css" />
8
8
 
9
9
  <!-- Template Scheme CSS -->
10
- <link rel="stylesheet" href="node_modules/@caweb/html-webpack-plugin/build/{{ scheme }}.css" />
10
+ <link rel="stylesheet" href="node_modules/@caweb/framework/build/{{ scheme }}.css" />
11
11
  {{/if}}
12
12
 
13
13
 
14
- {{#if htmlWebpackPlugin.options.meta }}
15
- {{#each htmlWebpackPlugin.options.meta }}
16
- <meta name="{{ @key }}" content="{{ this }}">
14
+ {{#if meta }}
15
+ {{#each meta }}
16
+ <meta name="{{ @key }}" content="{{ this }}" />
17
17
  {{/each}}
18
18
  {{/if}}
19
19