Files
meteor/packages/appcache/package.js
Ben Newman 7a6ee9e129 Revert changes to webapp package since version 1.8.0.
We accidentally published changes to webapp that should have been
restricted to Meteor 1.10 as part of the 1.8.1 version. This commit
reverts commits to packages/webapp since Meteor 1.9, so that we can
republish the 1.8.0 content as version 1.8.2. We will then bump the webapp
version to 1.9.0 on the release-1.10 branch and publish the new content
only on that branch.

Revert "Allow to exclude web architectures in development mode (#10824)"
This reverts commit a205967186.

Revert "Updates cordova-plugin-meteor-webapp to 1.7.1"
This reverts commit a1e4d27822.

Revert "Update cordova-plugin-wkwebview-engine to 1.2.1."
This reverts commit 3f9a69d7c4.

Revert "Update cordova-plugin-whitelist to 1.3.4."
This reverts commit 979273333b.

Revert "Update cordova-plugin-meteor-webapp to 1.7.1-beta.1."
This reverts commit 565c4254f1.

Revert "Update accounts-password to version 1.5.2."
This reverts commit b827d1da2f.
2020-01-16 11:15:25 -05:00

23 lines
638 B
JavaScript

Package.describe({
summary: "Enable the application cache in the browser",
version: "1.2.3",
});
Package.onUse(api => {
api.use('ecmascript', ['client', 'server']);
api.use(['webapp', 'routepolicy'], 'server');
api.use('reload', 'client');
api.use('autoupdate', 'server', {weak: true});
api.mainModule('appcache-client.js', 'client');
api.mainModule('appcache-server.js', 'server');
});
Package.onTest(api => {
api.use('tinytest');
api.use('appcache');
api.use('fetch');
api.use('webapp', 'server');
api.addFiles('appcache_tests-server.js', 'server');
api.addFiles('appcache_tests-client.js', 'client');
});