Skip to content

Commit afda7e2

Browse files
committed
fix(#1466): one more try
chore(demo): update Meteor version
1 parent 71af48a commit afda7e2

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

packages/angular2-meteor/atmosphere-packages/css-compiler/compilers/basic_compiler.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ BasicCompiler = class BasicCompiler {
2222
return;
2323
}
2424

25-
let resultCss = result.css || '';
25+
let resultCss = result.css;
2626
if (!Meteor.isDevelopment && resultCss) {
2727
resultCss = CssTools.minifyCss(resultCss)[0];
2828
}
2929

3030
// CSS files that comes from `imports` folder
3131
// can be downloaded as server assets.
3232
inputFile.addAsset({
33-
data: resultCss,
33+
data: resultCss || '',
3434
path: sourcePath
3535
});
3636

packages/angular2-meteor/atmosphere-packages/css-compiler/package.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package.describe({
22
name: 'barbatus:css-compiler',
3-
version: '0.3.5',
3+
version: '0.3.5_1',
44
summary: 'Angular 2 CSS compiler for Meteor',
55
git: 'https://github.com/Urigo/angular2-meteor/tree/master/atmosphere-packages/angular2-static-css',
66
documentation: 'README.md'

packages/angular2-meteor/examples/todos-meteor-1.3/.meteor/packages

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66

77
meteor-base@1.0.4 # Packages every Meteor app needs to have
88
mobile-experience@1.0.4 # Packages for a great mobile UX
9-
mongo@1.1.12_1 # The database Meteor supports right now
10-
session@1.1.6 # Client-side reactive dictionary for your app
11-
jquery@1.11.9 # Helpful client-side library
12-
tracker@1.1.0 # Meteor's client-side reactive programming library
9+
mongo@1.1.14 # The database Meteor supports right now
10+
session@1.1.7 # Client-side reactive dictionary for your app
11+
jquery@1.11.10 # Helpful client-side library
12+
tracker@1.1.1 # Meteor's client-side reactive programming library
1313

14-
es5-shim@4.6.14_1 # ECMAScript 5 compatibility for older browsers.
14+
es5-shim@4.6.15 # ECMAScript 5 compatibility for older browsers.
1515

1616
insecure@1.0.7 # Allow all DB writes from clients (for prototyping)
1717
angular2-compilers
18-
standard-minifier-js@1.2.0_1
18+
standard-minifier-js@1.2.1
1919
barbatus:angular2-polyfills
2020
shell-server@0.2.1
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
METEOR@1.4.1.2
1+
METEOR@1.4.2.1

0 commit comments

Comments
 (0)