-
-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix/meteor 2.6 for #6, changes to publish to npm/atmosphere under new org #7
Changes from 4 commits
cfd60a2
520b891
1e57da4
5440c8d
26a05ae
2f81710
225831c
fd17d71
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
{ | ||
"name": "meteor-desktop", | ||
"version": "2.2.5", | ||
"version": "2.2.6", | ||
"bin": { | ||
"meteor-desktop": "dist/bin/cli.js" | ||
}, | ||
"engines": { | ||
"node": ">=4.0.0" | ||
"node": ">=4.0.0 <=12" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I ran into an issue when building with node 14 but it works with node 12 so including that here. It works with Meteor 2.6 which uses node 14, so it's just the build process that doesn't work on 14 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good for now, for the future we should probably start looking towards Node 16. |
||
}, | ||
"description": "Build a Meteor's desktop client with hot code push.", | ||
"main": "dist/index.js", | ||
|
@@ -91,7 +91,7 @@ | |
"regenerator-runtime": "0.12.1", | ||
"rimraf": "2.6.2", | ||
"semver": "5.5.1", | ||
"shelljs": "0.8.2", | ||
"shelljs": "0.8.5", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. fixes these warnings
|
||
"single-line-log": "1.1.2", | ||
"terser": "3.8.2" | ||
}, | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* eslint-disable prefer-arrow-callback */ | ||
Package.describe({ | ||
name: 'omega:meteor-desktop-watcher', | ||
version: '2.2.5', | ||
version: '2.2.6', | ||
summary: 'Watches .desktop dir and triggers rebuilds on file change.', | ||
git: 'https://github.com/wojtkowiak/meteor-desktop', | ||
documentation: 'README.md', | ||
|
@@ -16,7 +16,7 @@ Package.onUse(function onUse(api) { | |
api.versionsFrom('[email protected]'); | ||
api.use('ecmascript'); | ||
api.use([ | ||
'omega:[email protected].5', | ||
'omega:[email protected].6', | ||
], ['server'], { | ||
weak: true | ||
}); | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Given the changes this should be at least 2.3 release, preferably a major version release.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We haven't made any backwards-breaking API changes so a major release wouldn't be appropriate for proper semver (which I think all npm packages should strive for) but 2.3 sounds good to me