xshell 1.0.181 → 1.0.182
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/builder.js +1 -1
- package/package.json +1 -1
- package/server.js +1 -0
package/builder.js
CHANGED
|
@@ -502,7 +502,7 @@ export class Bundler {
|
|
|
502
502
|
" <meta charset='utf-8' />\n" +
|
|
503
503
|
(heads ? heads.map(head => ` ${head}`).join_lines() : '') +
|
|
504
504
|
(device_width ? " <meta name='viewport' content='width=device-width, initial-scale=1.0' />\n" : '') +
|
|
505
|
-
(icon ? ` <link rel='icon' href='{root}${icon}' />\n` : '') +
|
|
505
|
+
(icon ? ` <link rel='icon' href='{root}${get(icon)}' />\n` : '') +
|
|
506
506
|
(manifest ? ` <link rel='manifest' href='{root}${manifest}' />\n` : '') +
|
|
507
507
|
this.resolve_dependency_files(_dependencies, false, { production: this.production }).map(fp => ` <script src='{root}vendors/${fp}' defer></script>`).join_lines() +
|
|
508
508
|
(scripts?.before ? scripts.before.map(asset => ` <script src='{root}${get(asset)}' defer></script>`).join_lines() : '') +
|
package/package.json
CHANGED
package/server.js
CHANGED