Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .envrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
function @tasks-3 {
METEOR_CHECKOUT_PATH='/Users/leonardo/Repositories/meteor/meteor' ./scripts/monitor.sh tasks-3.x reactive-stress.yml reactive
}
METEOR_CHECKOUT_PATH='/Users/leonardo/Repositories/meteor/meteor' ./scripts/monitor.sh tasks-3.x basic/reactive-stress.yml reactive
}
3 changes: 3 additions & 0 deletions apps/tasks-2.x/.meteor/packages
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,6 @@ hot-module-replacement@0.5.3 # Update client in development without reloading t
static-html@1.3.2 # Define static page content in .html files
react-meteor-data # React higher-order component for reactively tracking Meteor data
tasks-common
accounts-password
reywood:publish-composite
tunguska:reactive-aggregate
11 changes: 11 additions & 0 deletions apps/tasks-2.x/.meteor/versions
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
accounts-base@2.2.11
accounts-password@2.4.0
allow-deny@1.1.1
autoupdate@1.8.0
babel-compiler@7.10.5
Expand All @@ -13,6 +15,7 @@ check@1.4.1
ddp@1.4.1
ddp-client@2.6.2
ddp-common@1.4.1
ddp-rate-limiter@1.2.1
ddp-server@2.7.1
diff-sequence@1.1.2
dynamic-import@0.7.3
Expand All @@ -21,6 +24,7 @@ ecmascript-runtime@0.8.1
ecmascript-runtime-client@0.12.1
ecmascript-runtime-server@0.11.0
ejson@1.1.3
email@2.2.6
es5-shim@4.8.0
fetch@0.1.4
geojson-utils@1.0.11
Expand All @@ -31,6 +35,7 @@ htmljs@1.1.1
id-map@1.1.1
inter-process-messaging@0.1.1
launch-screen@2.0.0
localstorage@1.2.0
logging@1.3.4
meteor@1.11.5
meteor-base@1.5.1
Expand All @@ -51,12 +56,15 @@ npm-mongo@4.17.2
ordered-dict@1.1.0
promise@0.12.2
random@1.2.1
rate-limit@1.1.1
react-fast-refresh@0.2.8
react-meteor-data@3.0.0
reactive-var@1.0.12
reload@1.3.1
retry@1.1.0
reywood:publish-composite@1.9.0
routepolicy@1.1.1
sha@1.0.9
shell-server@0.5.0
socket-stream-client@0.5.2
spacebars-compiler@1.3.1
Expand All @@ -66,7 +74,10 @@ static-html@1.3.2
tasks-common@0.0.1
templating-tools@1.2.2
tracker@1.3.3
tunguska:reactive-aggregate@2.0.2
typescript@4.9.5
underscore@1.6.2
url@1.3.2
webapp@1.13.8
webapp-hashing@1.1.1
zodern:types@1.0.13
3 changes: 2 additions & 1 deletion apps/tasks-2.x/client/main.jsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
import React from 'react';
import { createRoot } from 'react-dom/client';
import { Meteor } from 'meteor/meteor';
import { initializeTaskCollection, registerTaskApi, App } from 'meteor/tasks-common';
import { initializeTaskCollection, registerTaskApi, registerComplexApi, App } from 'meteor/tasks-common';

Meteor.startup(() => {
initializeTaskCollection();
registerTaskApi();
registerComplexApi();

const container = document.getElementById('react-target');
const root = createRoot(container);
Expand Down
40 changes: 40 additions & 0 deletions apps/tasks-2.x/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion apps/tasks-2.x/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@
"@babel/runtime": "^7.23.5",
"meteor-node-stubs": "^1.2.7",
"react": "^18.2.0",
"react-dom": "^18.2.0"
"react-dom": "^18.2.0",
"react-router": "6.3.0",
"react-router-dom": "6.28.1"
},
"meteor": {
"mainModule": {
Expand Down
4 changes: 3 additions & 1 deletion apps/tasks-2.x/server/main.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
import { Meteor } from 'meteor/meteor';
import { tryMonitorExtras, initializeTaskCollection, registerTaskApi } from 'meteor/tasks-common';
import { tryMonitorExtras, initializeTaskCollection, registerTaskApi, registerComplexApi, registerComplexPublications } from 'meteor/tasks-common';

Meteor.startup(() => {
tryMonitorExtras();
initializeTaskCollection();
registerTaskApi();
registerComplexApi();
registerComplexPublications();
});
3 changes: 3 additions & 0 deletions apps/tasks-3.x/.meteor/packages
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,6 @@ hot-module-replacement@0.5.4 # Update client in development without reloading t
static-html@1.3.3 # Define static page content in .html files
react-meteor-data@3.0.0 # React higher-order component for reactively tracking Meteor data
tasks-common
accounts-password
reywood:publish-composite
tunguska:reactive-aggregate
11 changes: 11 additions & 0 deletions apps/tasks-3.x/.meteor/versions
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
accounts-base@3.0.1
accounts-password@3.0.1
allow-deny@2.0.0
autoupdate@2.0.0
babel-compiler@7.11.0
Expand All @@ -14,6 +16,7 @@ core-runtime@1.0.0
ddp@1.4.2
ddp-client@3.0.1
ddp-common@1.4.4
ddp-rate-limiter@1.2.2
ddp-server@3.0.1
diff-sequence@1.1.3
dynamic-import@0.7.4
Expand All @@ -22,6 +25,7 @@ ecmascript-runtime@0.8.2
ecmascript-runtime-client@0.12.2
ecmascript-runtime-server@0.11.1
ejson@1.1.4
email@3.0.100
es5-shim@4.8.1
facts-base@1.0.2
fetch@0.1.5
Expand All @@ -33,6 +37,7 @@ htmljs@2.0.1
id-map@1.2.0
inter-process-messaging@0.1.2
launch-screen@2.0.1
localstorage@1.2.1
logging@1.3.5
meteor@2.0.1
meteor-base@1.5.2
Expand All @@ -53,12 +58,15 @@ npm-mongo@4.17.4
ordered-dict@1.2.0
promise@1.0.0
random@1.2.2
rate-limit@1.1.2
react-fast-refresh@0.2.9
react-meteor-data@3.0.0
reactive-var@1.0.13
reload@1.3.2
retry@1.1.1
reywood:publish-composite@1.9.0
routepolicy@1.1.2
sha@1.0.10
shell-server@0.6.0
socket-stream-client@0.5.3
spacebars-compiler@2.0.0
Expand All @@ -68,7 +76,10 @@ static-html@1.3.3
tasks-common@0.0.1
templating-tools@2.0.0
tracker@1.3.4
tunguska:reactive-aggregate@2.0.2
typescript@5.4.3
underscore@1.6.4
url@1.3.3
webapp@2.0.1
webapp-hashing@1.1.2
zodern:types@1.0.13
3 changes: 2 additions & 1 deletion apps/tasks-3.x/client/main.jsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
import React from 'react';
import { createRoot } from 'react-dom/client';
import { Meteor } from 'meteor/meteor';
import { initializeTaskCollection, registerTaskApi, App } from 'meteor/tasks-common';
import { initializeTaskCollection, registerTaskApi, registerComplexApi, App } from 'meteor/tasks-common';

Meteor.startup(() => {
initializeTaskCollection();
registerTaskApi();
registerComplexApi();

const container = document.getElementById('react-target');
const root = createRoot(container);
Expand Down
Loading