Browse Source
Merge pull request #6790 from gimco/patch-1
[Build Tools] Meteor package: Use `api.addAssets` for static files
pull/7005/head
Jack Lukic
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
5 additions and
3 deletions
-
tasks/config/admin/templates/css-package.js
|
|
@ -15,7 +15,7 @@ Package.onUse(function(api) { |
|
|
|
|
|
|
|
api.use('jquery', 'client'); |
|
|
|
|
|
|
|
api.addFiles([ |
|
|
|
api.addAssets([ |
|
|
|
// icons
|
|
|
|
'themes/default/assets/fonts/icons.eot', |
|
|
|
'themes/default/assets/fonts/icons.svg', |
|
|
@ -24,8 +24,10 @@ Package.onUse(function(api) { |
|
|
|
'themes/default/assets/fonts/icons.woff2', |
|
|
|
|
|
|
|
// flags
|
|
|
|
'themes/default/assets/images/flags.png', |
|
|
|
|
|
|
|
'themes/default/assets/images/flags.png' |
|
|
|
], 'client'); |
|
|
|
|
|
|
|
api.addFiles([ |
|
|
|
// release
|
|
|
|
'semantic.css', |
|
|
|
'semantic.js' |
|
|
|