mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
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 commita205967186. Revert "Updates cordova-plugin-meteor-webapp to 1.7.1" This reverts commita1e4d27822. Revert "Update cordova-plugin-wkwebview-engine to 1.2.1." This reverts commit3f9a69d7c4. Revert "Update cordova-plugin-whitelist to 1.3.4." This reverts commit979273333b. Revert "Update cordova-plugin-meteor-webapp to 1.7.1-beta.1." This reverts commit565c4254f1. Revert "Update accounts-password to version 1.5.2." This reverts commitb827d1da2f.
23 lines
638 B
JavaScript
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');
|
|
});
|