Skip to content

Commit

Permalink
Merge pull request #20524 from storybookjs/norbert/tsc-script-ember
Browse files Browse the repository at this point in the history
Build: migrate the ember framework over to use tsc script
  • Loading branch information
ndelangen authored Jan 6, 2023
2 parents e6ec048 + 11e3bf3 commit c2fac6d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions code/frameworks/ember/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
"url": "https://opencollective.com/storybook"
},
"license": "MIT",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"template/**/*",
Expand All @@ -28,7 +28,7 @@
],
"scripts": {
"check": "../../../scripts/node_modules/.bin/tsc --noEmit",
"prep": "node ../../../scripts/prepare.js"
"prep": "../../../scripts/prepare/tsc.ts"
},
"dependencies": {
"@storybook/builder-webpack5": "7.0.0-beta.20",
Expand Down Expand Up @@ -59,5 +59,6 @@
"publishConfig": {
"access": "public"
},
"bundler": {},
"gitHead": "22701aedf564e467511887eb041f32ae0c96bcde"
}
2 changes: 1 addition & 1 deletion code/frameworks/ember/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
"strict": true,
"resolveJsonModule": true
},
"include": ["src/**/*", "package.json"]
"include": ["src/**/*"]
}

0 comments on commit c2fac6d

Please sign in to comment.