Skip to content

Commit

Permalink
Work for the #4626: fix default theme build. Fix dynamic components b…
Browse files Browse the repository at this point in the history
…uild for tests
  • Loading branch information
dk981234 committed Jul 21, 2022
1 parent b8f7100 commit 46e9a86
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 1 deletion.
1 change: 1 addition & 0 deletions build-scripts/survey-angular/webpack.config.js
Expand Up @@ -7,6 +7,7 @@ var path = require("path");

const config = {
entry: {
survey: path.resolve(__dirname, "../../src/main.scss"),
modern: path.resolve(__dirname, "../../src/modern.scss"),
defaultV2: path.resolve(__dirname, "../../src/defaultV2-theme/defaultV2.scss")
},
Expand Down
1 change: 1 addition & 0 deletions build-scripts/survey-core/webpack.config.js
Expand Up @@ -9,6 +9,7 @@ var path = require("path");

const config = {
entry: {
survey: path.resolve(__dirname, "../../src/main.scss"),
modern: path.resolve(__dirname, "../../src/modern.scss"),
defaultV2: path.resolve(__dirname, "../../src/defaultV2-theme/defaultV2.scss")
},
Expand Down
1 change: 1 addition & 0 deletions build-scripts/survey-jquery/webpack.config.js
Expand Up @@ -7,6 +7,7 @@ var path = require("path");

const config = {
entry: {
survey: path.resolve(__dirname, "../../src/main.scss"),
modern: path.resolve(__dirname, "../../src/modern.scss"),
defaultV2: path.resolve(__dirname, "../../src/defaultV2-theme/defaultV2.scss")
},
Expand Down
1 change: 1 addition & 0 deletions build-scripts/survey-knockout/webpack.config.js
Expand Up @@ -7,6 +7,7 @@ var path = require("path");

const config = {
entry: {
survey: path.resolve(__dirname, "../../src/main.scss"),
modern: path.resolve(__dirname, "../../src/modern.scss"),
defaultV2: path.resolve(__dirname, "../../src/defaultV2-theme/defaultV2.scss")
},
Expand Down
1 change: 1 addition & 0 deletions build-scripts/survey-react/webpack.config.js
Expand Up @@ -7,6 +7,7 @@ var path = require("path");

const config = {
entry: {
survey: path.resolve(__dirname, "../../src/main.scss"),
modern: path.resolve(__dirname, "../../src/modern.scss"),
defaultV2: path.resolve(__dirname, "../../src/defaultV2-theme/defaultV2.scss")
},
Expand Down
1 change: 1 addition & 0 deletions build-scripts/survey-vue/webpack.config.js
Expand Up @@ -7,6 +7,7 @@ var path = require("path");

const config = {
entry: {
survey: path.resolve(__dirname, "../../src/main.scss"),
modern: path.resolve(__dirname, "../../src/modern.scss"),
defaultV2: path.resolve(__dirname, "../../src/defaultV2-theme/defaultV2.scss")
},
Expand Down
4 changes: 3 additions & 1 deletion examples/angular-ui/src/app/app.module.ts
Expand Up @@ -28,5 +28,7 @@ import { CustomActionComponent } from "./components/test-custom-components/actio
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
export class AppModule {
static declaration = [AngularItemTemplateComponent, CustomActionComponent]
}

0 comments on commit 46e9a86

Please sign in to comment.