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

This commit is contained in:
Romulus Urakagi Tsai 2020-03-02 02:10:54 +00:00
parent 4b196d5378
commit 5899b9366c
6 changed files with 22 additions and 6 deletions

View file

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

View file

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

View file

@ -12,7 +12,7 @@ allow-deny@1.1.0
arillo:flow-router-helpers@0.5.2 arillo:flow-router-helpers@0.5.2
audit-argument-checks@1.0.7 audit-argument-checks@1.0.7
autoupdate@1.6.0 autoupdate@1.6.0
babel-compiler@7.5.1 babel-compiler@7.5.2
babel-runtime@1.5.0 babel-runtime@1.5.0
base64@1.0.12 base64@1.0.12
binary-heap@1.0.11 binary-heap@1.0.11
@ -44,7 +44,7 @@ cfs:upload-http@0.0.20
cfs:worker@0.1.5 cfs:worker@0.1.5
check@1.3.1 check@1.3.1
chuangbo:cookie@1.1.0 chuangbo:cookie@1.1.0
coagmano:stylus@2.0.0 coagmano:stylus@1.1.0
coffeescript@1.0.17 coffeescript@1.0.17
cottz:publish-relations@2.0.8 cottz:publish-relations@2.0.8
dburles:collection-helpers@1.1.0 dburles:collection-helpers@1.1.0
@ -57,7 +57,7 @@ deps@1.0.12
diff-sequence@1.1.1 diff-sequence@1.1.1
dynamic-import@0.5.1 dynamic-import@0.5.1
easylogic:summernote@0.8.8 easylogic:summernote@0.8.8
ecmascript@0.14.1 ecmascript@0.14.2
ecmascript-runtime@0.7.0 ecmascript-runtime@0.7.0
ecmascript-runtime-client@0.10.0 ecmascript-runtime-client@0.10.0
ecmascript-runtime-server@0.9.0 ecmascript-runtime-server@0.9.0

8
package-lock.json generated
View file

@ -1434,6 +1434,14 @@
"integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=",
"dev": true "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": { "figures": {
"version": "3.0.0", "version": "3.0.0",
"resolved": "https://registry.npmjs.org/figures/-/figures-3.0.0.tgz", "resolved": "https://registry.npmjs.org/figures/-/figures-3.0.0.tgz",

View file

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

View file

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