This repository has been archived by the owner on Feb 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcdn.nuspec
37 lines (37 loc) · 1.73 KB
/
cdn.nuspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>NICE.TopHat.CDN</id>
<version>1.0.0</version>
<title>NICE TopHat CDN</title>
<authors>NICE Digital Services,Ian Routledge</authors>
<owners>nice-digital</owners>
<projectUrl>https://github.com/nice-digital/NICE.TopHat</projectUrl>
<iconUrl>https://cdn.nice.org.uk/V3/Content/nice/favicon-120.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>CDN Package for TopHat including minified and development versions of the build plus the sourcemap</description>
<tags>cdn tophat javascript css</tags>
<dependencies></dependencies>
</metadata>
<files>
<!--
Latest build goes into the root of the tophat subfolder on the CDN.
E.g. https://alpha-cdn.nice.org.uk/tophat/tophat.min.js
-->
<file src="dist\*.*" target="tophat" exclude="**/web.config"/>
<!--
Deploy specific version to a numbered sub folder.
This allows other applications to reference a specific version of tophat.
This may be useful in case of breaking changes within TopHat.
E.g. https://alpha-cdn.nice.org.uk/tophat/0.0.1.1-r1234567/tophat.min.js
-->
<file src="dist\*.*" target="tophat/$version$/" exclude="**/web.config" />
<!--
Honour the old legacy, deprecated NICE.Bootstrap CDN structure.
E.g. https://alpha-cdn.nice.org.uk/V3.1/Scripts/nice/NICE.TopHat.dev.js
-->
<file src="dist\tophat.dev.js" target="V3.1/Scripts/nice/NICE.TopHat.dev.js"/>
<file src="dist\tophat.min.js" target="V3.1/Scripts/nice/NICE.TopHat.min.js"/>
<file src="dist\tophat.map" target="V3.1/Scripts/nice/tophat.map"/>
</files>
</package>