Skip to content

Commit

Permalink
manually change inter-package dep imports from paths to names
Browse files Browse the repository at this point in the history
  • Loading branch information
Elliott Marquez committed Apr 18, 2018
1 parent 0c85065 commit d913614
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/elements/custom-style.js
Original file line number Diff line number Diff line change
Expand Up @@ -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';

Expand Down
2 changes: 1 addition & 1 deletion lib/legacy/legacy-element-mixin.js
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down
2 changes: 1 addition & 1 deletion test/unit/polymer-element-with-apply-import.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit d913614

Please sign in to comment.