Skip to content

Commit

Permalink
Initial ideation for #15 Add Typescript support
Browse files Browse the repository at this point in the history
  • Loading branch information
StorytellerCZ committed Aug 19, 2024
1 parent d66957e commit 913f502
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v3.3.0
* Add Typescript support

## v3.2.1
* Minor version upgrade of NPM dependencies
* Fix registering custom 'meteor' scheme [`#39`](https://github.com/Meteor-Community-Packages/meteor-desktop/pull/39) by [@ramijarrar](https://github.com/ramijarrar)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@meteor-community/meteor-desktop",
"version": "3.2.1",
"version": "3.3.0",
"bin": {
"meteor-desktop": "dist/bin/cli.js"
},
Expand Down
6 changes: 3 additions & 3 deletions plugins/bundler/package.js
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
/* eslint-disable prefer-arrow-callback */
Package.describe({
name: 'communitypackages:meteor-desktop-bundler',
version: '3.2.0',
version: '3.3.0',
summary: 'Bundles .desktop dir into desktop.asar.',
git: 'https://github.com/Meteor-Community-Packages/meteor-desktop',
documentation: 'README.md'
});

Package.registerBuildPlugin({
name: 'meteor-desktop-bundler',
use: ['[email protected].1'],
use: ['[email protected].9', '[email protected]'],
sources: ['bundler.js'],
npmDependencies: { chokidar: '3.5.3' }
});

Package.onUse(function onUse(api) {
api.versionsFrom('1.4.4.6');
api.versionsFrom(['2.8.1', '2.16']);
api.use('isobuild:[email protected]');
api.addFiles([
'version._desktop_.js'
Expand Down
5 changes: 3 additions & 2 deletions plugins/watcher/package.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* eslint-disable prefer-arrow-callback */
Package.describe({
name: 'communitypackages:meteor-desktop-watcher',
version: '3.2.0',
version: '3.3.0',
summary: 'Watches .desktop dir and triggers rebuilds on file change.',
git: 'https://github.com/Meteor-Community-Packages/meteor-desktop',
documentation: 'README.md',
Expand All @@ -13,8 +13,9 @@ Npm.depends({
});

Package.onUse(function onUse(api) {
api.versionsFrom('[email protected]');
api.versionsFrom(['2.8.1', '2.16']);
api.use('ecmascript');
api.use('typescript');
api.use([
'communitypackages:[email protected]',
], ['server'], {
Expand Down

0 comments on commit 913f502

Please sign in to comment.