@angular/language-service 5.2.2 → 5.2.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/language-service.umd.js +34 -15
- package/bundles/language-service.umd.js.map +1 -1
- package/bundles/language-service.umd.min.js +14 -14
- package/bundles/language-service.umd.min.js.map +1 -1
- package/esm2015/language-service.js +3 -3
- package/esm2015/language-service.js.map +1 -1
- package/esm5/language-service.js +3 -3
- package/esm5/language-service.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v5.2.
|
|
2
|
+
* @license Angular v5.2.6
|
|
3
3
|
* (c) 2010-2018 Google, Inc. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -1660,7 +1660,7 @@ class ReflectorHost {
|
|
|
1660
1660
|
throw new Error('Resolution of relative paths requires a containing file.');
|
|
1661
1661
|
}
|
|
1662
1662
|
// Any containing file gives the same result for absolute imports
|
|
1663
|
-
containingFile = join(this.options.basePath, 'index.ts');
|
|
1663
|
+
containingFile = join(this.options.basePath, 'index.ts').replace(/\\/g, '/');
|
|
1664
1664
|
}
|
|
1665
1665
|
const resolved = resolveModuleName(moduleName, containingFile, this.options, this.hostAdapter)
|
|
1666
1666
|
.resolvedModule;
|
|
@@ -2503,7 +2503,7 @@ function create(info /* ts.server.PluginCreateInfo */) {
|
|
|
2503
2503
|
/**
|
|
2504
2504
|
* @stable
|
|
2505
2505
|
*/
|
|
2506
|
-
const VERSION = new Version('5.2.
|
|
2506
|
+
const VERSION = new Version('5.2.6');
|
|
2507
2507
|
|
|
2508
2508
|
/**
|
|
2509
2509
|
* @license
|