Browse Source

Change coagmano:stylus package to 1.1.0 since 2.0.0 building is super slow

Romulus Urakagi Tsai 5 years ago
parent
commit
5899b9366c
6 changed files with 22 additions and 6 deletions
  1. 2 2
      .meteor/packages
  2. 1 1
      .meteor/release
  3. 3 3
      .meteor/versions
  4. 8 0
      package-lock.json
  5. 1 0
      package.json
  6. 7 0
      server/migrations.js

+ 2 - 2
.meteor/packages

@@ -6,7 +6,7 @@
 meteor-base@1.4.0
 
 # Build system
-ecmascript@0.14.0
+ecmascript@0.14.2
 standard-minifier-css@1.6.0
 standard-minifier-js@2.6.0
 mquandalle:jade
@@ -85,7 +85,7 @@ msavin:usercache
 wekan-scrollbar
 mquandalle:perfect-scrollbar
 mdg:meteor-apm-agent@3.2.0-rc.0!
-coagmano:stylus
+coagmano:stylus@1.1.0
 lucasantoniassi:accounts-lockout
 meteorhacks:subs-manager
 meteorhacks:picker

+ 1 - 1
.meteor/release

@@ -1 +1 @@
-METEOR@1.9
+METEOR@1.9.2

+ 3 - 3
.meteor/versions

@@ -12,7 +12,7 @@ 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.1
+babel-compiler@7.5.2
 babel-runtime@1.5.0
 base64@1.0.12
 binary-heap@1.0.11
@@ -44,7 +44,7 @@ cfs:upload-http@0.0.20
 cfs:worker@0.1.5
 check@1.3.1
 chuangbo:cookie@1.1.0
-coagmano:stylus@2.0.0
+coagmano:stylus@1.1.0
 coffeescript@1.0.17
 cottz:publish-relations@2.0.8
 dburles:collection-helpers@1.1.0
@@ -57,7 +57,7 @@ deps@1.0.12
 diff-sequence@1.1.1
 dynamic-import@0.5.1
 easylogic:summernote@0.8.8
-ecmascript@0.14.1
+ecmascript@0.14.2
 ecmascript-runtime@0.7.0
 ecmascript-runtime-client@0.10.0
 ecmascript-runtime-server@0.9.0

+ 8 - 0
package-lock.json

@@ -1434,6 +1434,14 @@
       "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=",
       "dev": true
     },
+    "fibers": {
+      "version": "4.0.2",
+      "resolved": "https://registry.npmjs.org/fibers/-/fibers-4.0.2.tgz",
+      "integrity": "sha512-FhICi1K4WZh9D6NC18fh2ODF3EWy1z0gzIdV9P7+s2pRjfRBnCkMDJ6x3bV1DkVymKH8HGrQa/FNOBjYvnJ/tQ==",
+      "requires": {
+        "detect-libc": "^1.0.3"
+      }
+    },
     "figures": {
       "version": "3.0.0",
       "resolved": "https://registry.npmjs.org/figures/-/figures-3.0.0.tgz",

+ 1 - 0
package.json

@@ -60,6 +60,7 @@
     "bson": "^4.0.3",
     "bunyan": "^1.8.12",
     "es6-promise": "^4.2.4",
+    "fibers": "^4.0.2",
     "gridfs-stream": "^0.5.3",
     "ldapjs": "^1.0.2",
     "meteor-node-stubs": "^0.4.1",

+ 7 - 0
server/migrations.js

@@ -1038,3 +1038,10 @@ Migrations.add('fix-incorrect-dates', () => {
     cas = CFSAttachments.find();
     console.log('cas', cas);
 });     
+
+Migrations.add('change-attachment-library', () => {
+  console.log('migration called here');
+  Migrations.rollback('change-attachment-library');
+  console.log('migration rollbacked');
+});
+