mirror of
https://github.com/vale981/Vulcan
synced 2025-03-06 10:01:40 -05:00
19 lines
338 B
JavaScript
19 lines
338 B
JavaScript
Package.describe({
|
|
name: "vulcan:i18n-es-es",
|
|
summary: "Vulcan i18n package (es_ES)",
|
|
version: '1.10.0',
|
|
git: "https://github.com/VulcanJS/Vulcan.git"
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
|
|
api.versionsFrom('1.6.1');
|
|
|
|
api.use([
|
|
'vulcan:core@1.10.0'
|
|
]);
|
|
|
|
api.addFiles([
|
|
'lib/es_ES.js'
|
|
], ["client", "server"]);
|
|
});
|