manually change inter-package dep imports from paths to names

This commit is contained in:
Elliott Marquez
2018-04-18 15:44:50 -07:00
parent 0c8506591a
commit d913614db9
3 changed files with 3 additions and 3 deletions

View File

@@ -7,7 +7,7 @@ The complete set of contributors may be found at http://polymer.github.io/CONTRI
Code distributed by Google as part of the polymer project is also
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
*/
import '../../../../@webcomponents/shadycss/entrypoints/custom-style-interface.js';
import '@webcomponents/shadycss/entrypoints/custom-style-interface.js';
import { cssFromModules } from '../utils/style-gather.js';

View File

@@ -7,7 +7,7 @@ The complete set of contributors may be found at http://polymer.github.io/CONTRI
Code distributed by Google as part of the polymer project is also
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
*/
import '../../../../@webcomponents/shadycss/entrypoints/apply-shim.js';
import '@webcomponents/shadycss/entrypoints/apply-shim.js';
import { ElementMixin } from '../mixins/element-mixin.js';
import { GestureEventListeners } from '../mixins/gesture-event-listeners.js';

View File

@@ -9,7 +9,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
*/
import { PolymerElement } from '../../polymer-element.js';
import '../../../../@webcomponents/shadycss/entrypoints/apply-shim.js';
import '@webcomponents/shadycss/entrypoints/apply-shim.js';
import '../../lib/elements/custom-style.js';
import { html } from '../../lib/utils/html-tag.js';
class ApplyElement extends PolymerElement {