Skip to content

Commit 41762ac

Browse files
authored
Merge pull request #1481 from barbatus/master
fix(#1466)
2 parents 4450831 + 4ff34d9 commit 41762ac

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

packages/angular2-meteor/atmosphere-packages/angular2-compilers/package.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Package.registerBuildPlugin({
1515
// Uses an external packages to get the actual compilers
1616
'ecmascript@0.4.3',
1717
'urigo:static-html-compiler@0.1.8',
18-
'barbatus:css-compiler@0.3.4'
18+
'barbatus:css-compiler@0.3.5_1'
1919
]
2020
});
2121

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ BasicCompiler = class BasicCompiler {
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.4',
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)