Skip to content

Commit

Permalink
Release 0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ardatan committed Nov 30, 2018
1 parent ba5ce18 commit 6228776
Show file tree
Hide file tree
Showing 11 changed files with 81 additions and 71 deletions.
2 changes: 1 addition & 1 deletion atmosphere-packages/angular-compilers/package.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package.describe({
name: 'angular-compilers',
version: '0.3.2',
version: '0.3.3',
summary: 'Rollup, AOT, SCSS, HTML and TypeScript compilers for Angular Meteor',
git: 'https://github.com/Urigo/angular-meteor/tree/master/atmosphere-packages/angular-compilers',
documentation: 'README.md'
Expand Down
2 changes: 1 addition & 1 deletion atmosphere-packages/angular-html-compiler/package.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package.describe({
name: 'angular-html-compiler',
version: '0.3.2',
version: '0.3.3',
summary: 'Angular Html Compiler Package',
git: 'https://github.com/Urigo/angular-meteor/tree/master/atmosphere-packages/angular-html-compiler',
documentation: null
Expand Down
2 changes: 1 addition & 1 deletion atmosphere-packages/angular-scss-compiler/package.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package.describe({
name: 'angular-scss-compiler',
version: '0.3.2',
version: '0.3.3',
summary: 'Angular Scss Compiler Package',
git: 'https://github.com/Urigo/angular-meteor/tree/master/atmosphere-packages/angular-scss-compiler',
documentation: null
Expand Down
4 changes: 2 additions & 2 deletions atmosphere-packages/angular-typescript-compiler/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import {

const TEMPLATE_URL_REGEX = /templateUrl\s*:(\s*['"`](.*?)['"`]\s*([,}]))/gm;
const STYLES_URLS_REGEX = /styleUrls *:(\s*\[[^\]]*?\])/g;
const LOAD_CHILDREN_REGEX = /loadChildren\s*:(\s*['"`](.*?)['"`]\s*)/gm;
const LOAD_CHILDREN_REGEX = /loadChildren[\s]*:[\s]*['|"].*#{1}.*['|"]/;
const STRING_REGEX = /(['`"])((?:[^\\]\\\1|.)*?)\1/g;

const JS_REGEX = /\.html$/;
Expand Down Expand Up @@ -117,7 +117,7 @@ export class AngularTsCompiler {
modulePath += '.ngfactory';
moduleName += 'NgFactory';
}
return `loadChildren: () => module.dynamicImport('${modulePath}').then(allModule => allModule['${moduleName}']),`;
return `loadChildren: () => module.dynamicImport('${modulePath}').then(allModule => allModule['${moduleName}'])`;
});

}
Expand Down
2 changes: 1 addition & 1 deletion atmosphere-packages/angular-typescript-compiler/package.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package.describe({
name: 'angular-typescript-compiler',
version: '0.3.2',
version: '0.3.3',
summary: 'Angular TypeScript Compiler Package',
git: 'https://github.com/Urigo/angular-meteor/tree/master/atmosphere-packages/angular-typescript-compiler',
documentation: null
Expand Down
1 change: 1 addition & 0 deletions examples/MeteorCLI/lazy-loading/.meteor/versions
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ [email protected]
[email protected]
[email protected]
[email protected]
ardatan:[email protected]
[email protected]
[email protected]
[email protected]
Expand Down
13 changes: 9 additions & 4 deletions examples/MeteorCLI/lazy-loading/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 6228776

Please sign in to comment.