Get off off rails-assets

Just moving the things we currently use (and should drop in the ASAP) to vendor/assets
This commit is contained in:
Henne Vogelsang 2024-03-05 15:30:53 +01:00
parent 9fd0807a9a
commit b6560dbb34
659 changed files with 129299 additions and 67 deletions

View file

@ -0,0 +1,12 @@
Package.describe({
summary: '%summary%',
version: '%version%',
name: 'imsky:holder',
git: 'https://github.com/imsky/holder',
});
Package.onUse(function(api) {
api.versionsFrom('0.9.0');
api.export('Holder', 'client');
api.addFiles('holder.js', 'client');
});

View file

@ -0,0 +1,5 @@
(function(ctx, isMeteorPackage) {
if (isMeteorPackage) {
Holder = ctx.Holder;
}
})(this, typeof Meteor !== 'undefined' && typeof Package !== 'undefined');