mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
235d00e2c7b2d4ad55b92f0c350ac7edfa4b237b
cordova_lib.raw to account for raw deprecation.
The changes made in #9213 were seemingly innocent, but when merging I missed the fact that the 'cordova-lib' package bump was done to a new entry on the 'dev bundle', rather than on the `CORDOVA_DEV_BUNDLE_VERSIONS` in tools/cordova/index.js which, as of meteor/meteor#8976, is responsible for auto-installing Cordova when it is used rather than including it in the pre-packaged 'dev bundle'. That mistake was fixed with958c44ff1bandd6adc1b3a9, but not before it caused the Cordova tests to falsely pass on the PR since it was functionally still testing the previous version of Cordova, 7.0.0. Unfortunately, one of the changes in the 7.1.0 was the deprecation of an API we use within Meteor: the `raw` API on `cordova_lib`. Luckily, as seen on the following commit, that change was merely a re-organizational commit and still provides us access to that API by simply removing the `raw.` segment and accessing the various methods directly:90b6857f4dNever saw that deprecation message, but we certainly saw the failure in CI: https://circleci.com/gh/meteor/meteor/10412. With any luck, this commit/PR will fix the problem.
Meteor is an ultra-simple environment for building modern web applications.
With Meteor you write apps:
- in modern JavaScript
- that send data over the wire, rather than HTML
- using your choice of popular open-source libraries
Try a getting started tutorial:
Next, read the guide and the documentation.
Quick Start
On Windows, the installer can be found at https://www.meteor.com/install.
On Linux/macOS, use this line:
curl https://install.meteor.com/ | sh
Create a project:
meteor create try-meteor
Run it:
cd try-meteor
meteor
Developer Resources
Building an application with Meteor?
- Announcement list: sign up at http://www.meteor.com/
- Having problems? Ask for help at: http://stackoverflow.com/questions/tagged/meteor
- Discussion forums: https://forums.meteor.com/
Interested in helping or contributing to Meteor? These resources will help:
We are hiring! Visit meteor.io/jobs to learn more about working full-time on the Meteor project.
Uninstalling Meteor
Aside from a short launcher shell script, Meteor installs itself inside your home directory. To uninstall Meteor, run:
rm -rf ~/.meteor/
sudo rm /usr/local/bin/meteor
On Windows, just run the uninstaller from your Control Panel.
Languages
JavaScript
91.1%
TypeScript
3.9%
Shell
0.9%
Java
0.7%
Swift
0.7%
Other
2.5%
