diff --git a/code/addons/storyshots/storyshots-core/package.json b/code/addons/storyshots/storyshots-core/package.json index e97ea6533fb..1871b782998 100644 --- a/code/addons/storyshots/storyshots-core/package.json +++ b/code/addons/storyshots/storyshots-core/package.json @@ -31,10 +31,7 @@ "*.d.ts" ], "scripts": { - "build-storybook": "sb build", - "example": "jest storyshot.test", - "prep": "node ../../../../scripts/prepare.js", - "storybook": "yarn sb dev -p 6006" + "prep": "rimraf dist && ../../../../scripts/node_modules/.bin/tsc --project tsconfig.build.json && echo \"Preventing passing flags to tsc\"" }, "dependencies": { "@jest/transform": "^29.3.1", @@ -71,6 +68,7 @@ "jest-preset-angular": "^8.3.2", "jest-vue-preprocessor": "^1.7.1", "react-test-renderer": "^16", + "rimraf": "^3.0.2", "rxjs": "^6.6.3", "vue-jest": "^5.0.0-alpha.8" }, diff --git a/code/addons/storyshots/storyshots-core/tsconfig.build.json b/code/addons/storyshots/storyshots-core/tsconfig.build.json new file mode 100644 index 00000000000..6aa09e55ada --- /dev/null +++ b/code/addons/storyshots/storyshots-core/tsconfig.build.json @@ -0,0 +1,22 @@ +{ + "extends": "../../tsconfig.json", + "compileOnSave": false, + "compilerOptions": { + "target": "ES2020", + "module": "CommonJS", + "lib": ["es2020", "dom"], + "experimentalDecorators": true, + "emitDecoratorMetadata": true, + "declaration": true, + "outDir": "dist", + "types": ["node"], + "skipLibCheck": true, + "resolveJsonModule": true, + "allowJs": true, + "pretty": true, + "noErrorTruncation": true, + "listEmittedFiles": false, + "noUnusedLocals": false + }, + "include": ["src/**/*", "src/**/*.json"] +} diff --git a/code/addons/storyshots/storyshots-puppeteer/package.json b/code/addons/storyshots/storyshots-puppeteer/package.json index e834093122b..0dae68f3968 100644 --- a/code/addons/storyshots/storyshots-puppeteer/package.json +++ b/code/addons/storyshots/storyshots-puppeteer/package.json @@ -30,7 +30,7 @@ "*.d.ts" ], "scripts": { - "prep": "node ../../../../scripts/prepare.js" + "prep": "rimraf dist && ../../../../scripts/node_modules/.bin/tsc --project tsconfig.build.json && echo \"Preventing passing flags to tsc\"" }, "dependencies": { "@axe-core/puppeteer": "^4.2.0", @@ -42,7 +42,8 @@ }, "devDependencies": { "@types/puppeteer": "^5.4.0", - "puppeteer": "^2.0.0 || ^3.0.0" + "puppeteer": "^2.0.0 || ^3.0.0", + "rimraf": "^3.0.2" }, "peerDependencies": { "@storybook/addon-storyshots": "7.0.0-alpha.62", diff --git a/code/addons/storyshots/storyshots-puppeteer/tsconfig.build.json b/code/addons/storyshots/storyshots-puppeteer/tsconfig.build.json new file mode 100644 index 00000000000..6aa09e55ada --- /dev/null +++ b/code/addons/storyshots/storyshots-puppeteer/tsconfig.build.json @@ -0,0 +1,22 @@ +{ + "extends": "../../tsconfig.json", + "compileOnSave": false, + "compilerOptions": { + "target": "ES2020", + "module": "CommonJS", + "lib": ["es2020", "dom"], + "experimentalDecorators": true, + "emitDecoratorMetadata": true, + "declaration": true, + "outDir": "dist", + "types": ["node"], + "skipLibCheck": true, + "resolveJsonModule": true, + "allowJs": true, + "pretty": true, + "noErrorTruncation": true, + "listEmittedFiles": false, + "noUnusedLocals": false + }, + "include": ["src/**/*", "src/**/*.json"] +} diff --git a/code/yarn.lock b/code/yarn.lock index 5216b3bc46c..ed1b850b3a0 100644 --- a/code/yarn.lock +++ b/code/yarn.lock @@ -5464,6 +5464,7 @@ __metadata: "@types/puppeteer": ^5.4.0 jest-image-snapshot: ^6.0.0 puppeteer: ^2.0.0 || ^3.0.0 + rimraf: ^3.0.2 peerDependencies: "@storybook/addon-storyshots": 7.0.0-alpha.62 puppeteer: ">=2.0.0" @@ -5507,6 +5508,7 @@ __metadata: pretty-format: ^29.0.0 react-test-renderer: ^16 read-pkg-up: ^7.0.1 + rimraf: ^3.0.2 rxjs: ^6.6.3 ts-dedent: ^2.0.0 vue-jest: ^5.0.0-alpha.8