-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #689 from manuel-martos/2.x-support-wasm
Support Kotlin/Wasm
- Loading branch information
Showing
189 changed files
with
7,939 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
55 changes: 55 additions & 0 deletions
55
appyx-components/experimental/cards/common/karma.config.d/wasm/config.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
// see https://kotlinlang.org/docs/js-project-setup.html#webpack-configuration-file | ||
// This file provides karma.config.d configuration to run tests with k/wasm | ||
|
||
const path = require("path"); | ||
|
||
config.browserConsoleLogOptions.level = "debug"; | ||
|
||
const basePath = config.basePath; | ||
const projectPath = path.resolve(basePath, "..", "..", "..", ".."); | ||
const generatedAssetsPath = path.resolve(projectPath, "build", "karma-webpack-out") | ||
|
||
const debug = message => console.log(`[karma-config] ${message}`); | ||
|
||
debug(`karma basePath: ${basePath}`); | ||
debug(`karma generatedAssetsPath: ${generatedAssetsPath}`); | ||
|
||
config.proxies["/"] = path.resolve(basePath, "kotlin"); | ||
|
||
config.files = [ | ||
{pattern: path.resolve(generatedAssetsPath, "**/*"), included: false, served: true, watched: false}, | ||
{pattern: path.resolve(basePath, "kotlin", "**/*.png"), included: false, served: true, watched: false}, | ||
{pattern: path.resolve(basePath, "kotlin", "**/*.gif"), included: false, served: true, watched: false}, | ||
{pattern: path.resolve(basePath, "kotlin", "**/*.ttf"), included: false, served: true, watched: false}, | ||
{pattern: path.resolve(basePath, "kotlin", "**/*.txt"), included: false, served: true, watched: false}, | ||
{pattern: path.resolve(basePath, "kotlin", "**/*.json"), included: false, served: true, watched: false}, | ||
{pattern: path.resolve(basePath, "kotlin", "**/*.xml"), included: false, served: true, watched: false}, | ||
].concat(config.files); | ||
|
||
function KarmaWebpackOutputFramework(config) { | ||
// This controller is instantiated and set during the preprocessor phase. | ||
const controller = config.__karmaWebpackController; | ||
|
||
// only if webpack has instantiated its controller | ||
if (!controller) { | ||
console.warn( | ||
"Webpack has not instantiated controller yet.\n" + | ||
"Check if you have enabled webpack preprocessor and framework before this framework" | ||
) | ||
return | ||
} | ||
|
||
config.files.push({ | ||
pattern: `${controller.outputPath}/**/*`, | ||
included: false, | ||
served: true, | ||
watched: false | ||
}) | ||
} | ||
|
||
const KarmaWebpackOutputPlugin = { | ||
'framework:webpack-output': ['factory', KarmaWebpackOutputFramework], | ||
}; | ||
|
||
config.plugins.push(KarmaWebpackOutputPlugin); | ||
config.frameworks.push("webpack-output"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
55 changes: 55 additions & 0 deletions
55
appyx-components/experimental/promoter/common/karma.config.d/wasm/config.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
// see https://kotlinlang.org/docs/js-project-setup.html#webpack-configuration-file | ||
// This file provides karma.config.d configuration to run tests with k/wasm | ||
|
||
const path = require("path"); | ||
|
||
config.browserConsoleLogOptions.level = "debug"; | ||
|
||
const basePath = config.basePath; | ||
const projectPath = path.resolve(basePath, "..", "..", "..", ".."); | ||
const generatedAssetsPath = path.resolve(projectPath, "build", "karma-webpack-out") | ||
|
||
const debug = message => console.log(`[karma-config] ${message}`); | ||
|
||
debug(`karma basePath: ${basePath}`); | ||
debug(`karma generatedAssetsPath: ${generatedAssetsPath}`); | ||
|
||
config.proxies["/"] = path.resolve(basePath, "kotlin"); | ||
|
||
config.files = [ | ||
{pattern: path.resolve(generatedAssetsPath, "**/*"), included: false, served: true, watched: false}, | ||
{pattern: path.resolve(basePath, "kotlin", "**/*.png"), included: false, served: true, watched: false}, | ||
{pattern: path.resolve(basePath, "kotlin", "**/*.gif"), included: false, served: true, watched: false}, | ||
{pattern: path.resolve(basePath, "kotlin", "**/*.ttf"), included: false, served: true, watched: false}, | ||
{pattern: path.resolve(basePath, "kotlin", "**/*.txt"), included: false, served: true, watched: false}, | ||
{pattern: path.resolve(basePath, "kotlin", "**/*.json"), included: false, served: true, watched: false}, | ||
{pattern: path.resolve(basePath, "kotlin", "**/*.xml"), included: false, served: true, watched: false}, | ||
].concat(config.files); | ||
|
||
function KarmaWebpackOutputFramework(config) { | ||
// This controller is instantiated and set during the preprocessor phase. | ||
const controller = config.__karmaWebpackController; | ||
|
||
// only if webpack has instantiated its controller | ||
if (!controller) { | ||
console.warn( | ||
"Webpack has not instantiated controller yet.\n" + | ||
"Check if you have enabled webpack preprocessor and framework before this framework" | ||
) | ||
return | ||
} | ||
|
||
config.files.push({ | ||
pattern: `${controller.outputPath}/**/*`, | ||
included: false, | ||
served: true, | ||
watched: false | ||
}) | ||
} | ||
|
||
const KarmaWebpackOutputPlugin = { | ||
'framework:webpack-output': ['factory', KarmaWebpackOutputFramework], | ||
}; | ||
|
||
config.plugins.push(KarmaWebpackOutputPlugin); | ||
config.frameworks.push("webpack-output"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
55 changes: 55 additions & 0 deletions
55
appyx-components/experimental/puzzle15/common/karma.config.d/wasm/config.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
// see https://kotlinlang.org/docs/js-project-setup.html#webpack-configuration-file | ||
// This file provides karma.config.d configuration to run tests with k/wasm | ||
|
||
const path = require("path"); | ||
|
||
config.browserConsoleLogOptions.level = "debug"; | ||
|
||
const basePath = config.basePath; | ||
const projectPath = path.resolve(basePath, "..", "..", "..", ".."); | ||
const generatedAssetsPath = path.resolve(projectPath, "build", "karma-webpack-out") | ||
|
||
const debug = message => console.log(`[karma-config] ${message}`); | ||
|
||
debug(`karma basePath: ${basePath}`); | ||
debug(`karma generatedAssetsPath: ${generatedAssetsPath}`); | ||
|
||
config.proxies["/"] = path.resolve(basePath, "kotlin"); | ||
|
||
config.files = [ | ||
{pattern: path.resolve(generatedAssetsPath, "**/*"), included: false, served: true, watched: false}, | ||
{pattern: path.resolve(basePath, "kotlin", "**/*.png"), included: false, served: true, watched: false}, | ||
{pattern: path.resolve(basePath, "kotlin", "**/*.gif"), included: false, served: true, watched: false}, | ||
{pattern: path.resolve(basePath, "kotlin", "**/*.ttf"), included: false, served: true, watched: false}, | ||
{pattern: path.resolve(basePath, "kotlin", "**/*.txt"), included: false, served: true, watched: false}, | ||
{pattern: path.resolve(basePath, "kotlin", "**/*.json"), included: false, served: true, watched: false}, | ||
{pattern: path.resolve(basePath, "kotlin", "**/*.xml"), included: false, served: true, watched: false}, | ||
].concat(config.files); | ||
|
||
function KarmaWebpackOutputFramework(config) { | ||
// This controller is instantiated and set during the preprocessor phase. | ||
const controller = config.__karmaWebpackController; | ||
|
||
// only if webpack has instantiated its controller | ||
if (!controller) { | ||
console.warn( | ||
"Webpack has not instantiated controller yet.\n" + | ||
"Check if you have enabled webpack preprocessor and framework before this framework" | ||
) | ||
return | ||
} | ||
|
||
config.files.push({ | ||
pattern: `${controller.outputPath}/**/*`, | ||
included: false, | ||
served: true, | ||
watched: false | ||
}) | ||
} | ||
|
||
const KarmaWebpackOutputPlugin = { | ||
'framework:webpack-output': ['factory', KarmaWebpackOutputFramework], | ||
}; | ||
|
||
config.plugins.push(KarmaWebpackOutputPlugin); | ||
config.frameworks.push("webpack-output"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
55 changes: 55 additions & 0 deletions
55
appyx-components/experimental/puzzle15/web/karma.config.d/wasm/config.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
// see https://kotlinlang.org/docs/js-project-setup.html#webpack-configuration-file | ||
// This file provides karma.config.d configuration to run tests with k/wasm | ||
|
||
const path = require("path"); | ||
|
||
config.browserConsoleLogOptions.level = "debug"; | ||
|
||
const basePath = config.basePath; | ||
const projectPath = path.resolve(basePath, "..", "..", "..", ".."); | ||
const generatedAssetsPath = path.resolve(projectPath, "build", "karma-webpack-out") | ||
|
||
const debug = message => console.log(`[karma-config] ${message}`); | ||
|
||
debug(`karma basePath: ${basePath}`); | ||
debug(`karma generatedAssetsPath: ${generatedAssetsPath}`); | ||
|
||
config.proxies["/"] = path.resolve(basePath, "kotlin"); | ||
|
||
config.files = [ | ||
{pattern: path.resolve(generatedAssetsPath, "**/*"), included: false, served: true, watched: false}, | ||
{pattern: path.resolve(basePath, "kotlin", "**/*.png"), included: false, served: true, watched: false}, | ||
{pattern: path.resolve(basePath, "kotlin", "**/*.gif"), included: false, served: true, watched: false}, | ||
{pattern: path.resolve(basePath, "kotlin", "**/*.ttf"), included: false, served: true, watched: false}, | ||
{pattern: path.resolve(basePath, "kotlin", "**/*.txt"), included: false, served: true, watched: false}, | ||
{pattern: path.resolve(basePath, "kotlin", "**/*.json"), included: false, served: true, watched: false}, | ||
{pattern: path.resolve(basePath, "kotlin", "**/*.xml"), included: false, served: true, watched: false}, | ||
].concat(config.files); | ||
|
||
function KarmaWebpackOutputFramework(config) { | ||
// This controller is instantiated and set during the preprocessor phase. | ||
const controller = config.__karmaWebpackController; | ||
|
||
// only if webpack has instantiated its controller | ||
if (!controller) { | ||
console.warn( | ||
"Webpack has not instantiated controller yet.\n" + | ||
"Check if you have enabled webpack preprocessor and framework before this framework" | ||
) | ||
return | ||
} | ||
|
||
config.files.push({ | ||
pattern: `${controller.outputPath}/**/*`, | ||
included: false, | ||
served: true, | ||
watched: false | ||
}) | ||
} | ||
|
||
const KarmaWebpackOutputPlugin = { | ||
'framework:webpack-output': ['factory', KarmaWebpackOutputFramework], | ||
}; | ||
|
||
config.plugins.push(KarmaWebpackOutputPlugin); | ||
config.frameworks.push("webpack-output"); |
Oops, something went wrong.