소스 검색

Upgrade to Meteor 2.0-beta.3. Removed fast-render and ostrio:cookies.

Thanks to xet7 !
Lauri Ojansivu 4 년 전
부모
커밋
a463f2a855
4개의 변경된 파일14개의 추가작업 그리고 19개의 파일을 삭제
  1. 3 5
      .meteor/packages
  2. 1 1
      .meteor/release
  3. 8 13
      .meteor/versions
  4. 2 0
      server/publications/fast-render.js

+ 3 - 5
.meteor/packages

@@ -6,8 +6,8 @@
 meteor-base@1.4.0
 
 # Build system
-ecmascript@0.14.3
-standard-minifier-css@1.6.1
+ecmascript@0.15.0-beta200.3
+standard-minifier-css@1.7.0-beta200.3
 standard-minifier-js@2.6.0
 mquandalle:jade
 coffeescript@2.4.1!
@@ -72,8 +72,7 @@ simple:rest-accounts-password
 useraccounts:core
 email@2.0.0
 horka:swipebox
-dynamic-import@0.5.2
-staringatlights:fast-render
+dynamic-import@0.6.0-beta200.3
 
 accounts-password@1.6.2
 cfs:gridfs
@@ -95,7 +94,6 @@ konecty:mongo-counter
 percolate:synced-cron
 easylogic:summernote
 cfs:filesystem
-ostrio:cookies
 tmeasday:check-npm-versions
 steffo:meteor-accounts-saml
 rajit:bootstrap3-datepicker-fi

+ 1 - 1
.meteor/release

@@ -1 +1 @@
-METEOR@1.11.1
+METEOR@2.0-beta.3

+ 8 - 13
.meteor/versions

@@ -10,8 +10,8 @@ aldeed:simple-schema@1.5.4
 allow-deny@1.1.0
 arillo:flow-router-helpers@0.5.2
 audit-argument-checks@1.0.7
-autoupdate@1.6.0
-babel-compiler@7.5.3
+autoupdate@1.7.0-beta200.3
+babel-compiler@7.6.0-beta200.3
 babel-runtime@1.5.0
 base64@1.0.12
 binary-heap@1.0.11
@@ -42,7 +42,6 @@ cfs:tempstore@0.1.6
 cfs:upload-http@0.0.20
 cfs:worker@0.1.5
 check@1.3.1
-chuangbo:cookie@1.1.0
 coagmano:stylus@1.1.0
 coffeescript@2.4.1
 coffeescript-compiler@2.4.1
@@ -55,9 +54,9 @@ ddp-rate-limiter@1.0.9
 ddp-server@2.3.2
 deps@1.0.12
 diff-sequence@1.1.1
-dynamic-import@0.5.3
+dynamic-import@0.6.0-beta200.3
 easylogic:summernote@0.8.8
-ecmascript@0.14.3
+ecmascript@0.15.0-beta200.3
 ecmascript-runtime@0.7.0
 ecmascript-runtime-client@0.11.0
 ecmascript-runtime-server@0.10.0
@@ -107,7 +106,7 @@ minifiers@1.1.8-faster-rebuild.0
 minimongo@1.6.0
 mobile-status-bar@1.1.0
 modern-browsers@0.1.5
-modules@0.15.0
+modules@0.16.0-beta200.3
 modules-runtime@0.12.0
 momentjs:moment@2.29.1
 mongo@1.10.0
@@ -132,7 +131,6 @@ oauth2@1.3.0
 observe-sequence@1.0.16
 ongoworks:speakingurl@1.1.0
 ordered-dict@1.1.0
-ostrio:cookies@2.6.1
 peerlibrary:assert@0.3.0
 peerlibrary:base-component@0.16.0
 peerlibrary:blaze-components@0.15.1
@@ -199,7 +197,6 @@ reload@1.3.0
 retry@1.1.0
 routepolicy@1.1.0
 rzymek:fullcalendar@3.8.0
-server-render@0.3.1
 service-configuration@1.0.11
 session@1.2.0
 sha@1.0.9
@@ -214,10 +211,8 @@ softwarerero:accounts-t9n@1.3.11
 spacebars@1.0.15
 spacebars-compiler@1.1.3
 srp@1.1.0
-standard-minifier-css@1.6.1
+standard-minifier-css@1.7.0-beta200.3
 standard-minifier-js@2.6.0
-staringatlights:fast-render@3.3.0
-staringatlights:inject-data@2.3.0
 steffo:meteor-accounts-saml@0.0.18
 tap:i18n@1.8.2
 templates:tabs@2.3.0
@@ -235,8 +230,8 @@ useraccounts:core@1.14.2
 useraccounts:flow-routing@1.14.2
 useraccounts:unstyled@1.14.2
 verron:autosize@3.0.8
-webapp@1.9.1
-webapp-hashing@1.0.9
+webapp@1.10.0-beta200.3
+webapp-hashing@1.1.0-beta200.3
 wekan-accounts-cas@0.1.0
 wekan-accounts-oidc@1.0.10
 wekan-ldap@0.0.2

+ 2 - 0
server/publications/fast-render.js

@@ -1,3 +1,4 @@
+/*
 import { FastRender } from 'meteor/staringatlights:fast-render';
 
 FastRender.onAllRoutes(function() {
@@ -7,3 +8,4 @@ FastRender.onAllRoutes(function() {
 FastRender.route('/b/:id/:slug', function({ id }) {
   this.subscribe('board', id, false);
 });
+*/