@appshell/loader 1.0.0-alpha.26 → 1.0.0-alpha.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Serialises a value to YAML.
|
|
3
|
+
*
|
|
4
|
+
* The counterpart to `load`, and here rather than at each call site so the YAML library
|
|
5
|
+
* stays in one package. `appshell theme init` writes a file an author then edits, so the
|
|
6
|
+
* output is line-wrapped generously — a colour value broken across lines is technically
|
|
7
|
+
* valid and horrible to read.
|
|
8
|
+
*/
|
|
9
|
+
declare const dump: (value: unknown) => string;
|
|
10
|
+
export default dump;
|
|
@@ -2,5 +2,6 @@ export { default as blur } from './blur';
|
|
|
2
2
|
export { compareDependencies, compareDependency, compareSharedDependencies, compareSharedModules, extractDependencies, printResults, } from './compare';
|
|
3
3
|
export { mergeConfigWithArgs, readConfig, writeConfig } from './config';
|
|
4
4
|
export { default as copy } from './copy';
|
|
5
|
+
export { default as dump } from './dump';
|
|
5
6
|
export { default as list } from './list';
|
|
6
7
|
export { default as load, loadAll } from './load';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@appshell/loader",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.28",
|
|
4
4
|
"description": "Utility for loading Appshell components",
|
|
5
5
|
"main": "dist/main.js",
|
|
6
6
|
"types": "dist/loader/src/index.d.ts",
|
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
],
|
|
32
32
|
"license": "MIT",
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@appshell/runtime": "^1.0.0-alpha.
|
|
34
|
+
"@appshell/runtime": "^1.0.0-alpha.28",
|
|
35
35
|
"@module-federation/enhanced": "^2.8.2"
|
|
36
36
|
},
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "98536b28cc795ff6fb4964c2a16c2f8334d16c1b"
|
|
38
38
|
}
|