Skip to content

Commit

Permalink
Updated to new syntax + linted
Browse files Browse the repository at this point in the history
  • Loading branch information
tmeasday committed Sep 1, 2015
1 parent 218b225 commit afe68f0
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions package.js
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
var Version = "v1.9";
var Version = 'v1.9';

Package.describe({
summary: "Icons for Percolate, version" + Version
summary: 'Icons for Percolate, version' + Version
});

Package.on_use(function (api) {
Package.onUse(function(api) {
var path = Npm.require('path');
var asset_path = path.join(Version);
var assetPath = path.join(Version);

api.add_files(path.join(asset_path, 'fonts', 'percolate.eot'), 'client');
api.add_files(path.join(asset_path, 'fonts', 'percolate.svg'), 'client');
api.add_files(path.join(asset_path, 'fonts', 'percolate.ttf'), 'client');
api.add_files(path.join(asset_path, 'fonts', 'percolate.woff'), 'client');
api.addFiles(path.join(assetPath, 'fonts', 'percolate.eot'), 'client', {isAsset: true});
api.addFiles(path.join(assetPath, 'fonts', 'percolate.svg'), 'client', {isAsset: true});
api.addFiles(path.join(assetPath, 'fonts', 'percolate.ttf'), 'client', {isAsset: true});
api.addFiles(path.join(assetPath, 'fonts', 'percolate.woff'), 'client', {isAsset: true});

api.add_files(path.join('edited-style.css'), 'client');
});
api.addFiles(path.join('edited-style.css'), 'client');
});

0 comments on commit afe68f0

Please sign in to comment.