mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Add some advice about republishing packages to History.md.
This commit is contained in:
18
History.md
18
History.md
@@ -25,6 +25,24 @@
|
||||
meteor npm install meteor-node-stubs@next
|
||||
```
|
||||
|
||||
* If you are the author of any Meteor packages, and you encounter errors
|
||||
when using those packages in a Meteor 1.8.2 application (for example,
|
||||
`module.watch` being undefined), we recommend that you bump the minor
|
||||
version of your package and republish it using Meteor 1.8.2, so
|
||||
Meteor 1.8.2 applications will automatically use the new version of the
|
||||
package, as compiled by Meteor 1.8.2:
|
||||
```sh
|
||||
cd path/to/your/package
|
||||
# Add api.versionsFrom("1.8.2") to Package.onUse in package.js...
|
||||
meteor --release 1.8.2 publish
|
||||
```
|
||||
This may not be necessary for all packages, especially those that have
|
||||
been recently republished using Meteor 1.8.1, or local packages in the
|
||||
`packages/` directory (which are always recompiled from source).
|
||||
However, republishing packages is a general solution to a wide variety
|
||||
of package versioning and compilation problems, and package authors can
|
||||
make their users' lives easier by handling these issues proactively.
|
||||
|
||||
### Changes
|
||||
|
||||
* Node has been updated to version
|
||||
|
||||
Reference in New Issue
Block a user