Skip to content

Commit

Permalink
fix: update file path access
Browse files Browse the repository at this point in the history
  • Loading branch information
Westbrook committed Jan 4, 2021
1 parent a87f251 commit 8898bf7
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/asset/stories/asset.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ governing permissions and limitations under the License.
import { html, TemplateResult } from '@spectrum-web-components/base';

import '../sp-asset.js';
import { portrait } from '@spectrum-web-components/card/stories/images';
import { portrait } from '../../card/stories/images';

export default {
title: 'Asset',
Expand Down
4 changes: 3 additions & 1 deletion packages/button/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@
"./sp-button": "./sp-button.js",
"./sp-button.js": "./sp-button.js",
"./sp-clear-button": "./sp-clear-button.js",
"./sp-clear-button.js": "./sp-clear-button.js"
"./sp-clear-button.js": "./sp-clear-button.js",
"./sp-field-button": "./sp-field-button.js",
"./sp-field-button.js": "./sp-field-button.js"
},
"files": [
"custom-elements.json",
Expand Down
2 changes: 1 addition & 1 deletion packages/field-group/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"types": "./src/index.d.ts",
"type": "module",
"exports": {
"./": "./src/index.js",
".": "./src/index.js",
"./src/": "./src/",
"./custom-elements.json": "./custom-elements.json",
"./package.json": "./package.json",
Expand Down
2 changes: 1 addition & 1 deletion packages/radio/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
},
"include": ["*.ts", "src/*.ts"],
"exclude": ["test/*.ts", "stories/*.ts"],
"references": [{ "path": "../shared" }]
"references": [{ "path": "../shared" }, { "path": "../field-group" }]
}

0 comments on commit 8898bf7

Please sign in to comment.