A development team encountered this error while upgrading from Meteor 1.8 to 2.5. Their CI pipeline would fail with the exact phrase “meteor rejects addon 1211 work”. After investigation:
The error vanished after ensuring the native addon matched the target Node ABI version.
Prior to recent updates, Minecraft items relied heavily on NBT (Named Binary Tag) data for storing attributes. Meteor addons often utilized mixins to read or write this NBT data for features like "AutoArmor" or "AutoSort."
In 1.21.1, Mojang migrated item data to Data Components. This fundamentally changed the ItemStack class hierarchy. meteor rejects addon 1211 work
rm -rf .meteor/local/cordova-build
Native addons are version-sensitive. Run: A development team encountered this error while upgrading
node --version
meteor --version
Ensure they are compatible. For Meteor 2.x and above, Node 14 or higher is required. If your addon was compiled for Node 12, Meteor will reject it.
Fix: Rebuild native addons:
meteor npm rebuild
Remove suspected plugins one by one:
meteor remove cordova:com.example.plugin
meteor add cordova:com.example.plugin@latest
If the error disappears, you've found the culprit. Check the plugin's GitHub issues for Meteor-specific patches. The error vanished after ensuring the native addon