@stackbox/cms 0.0.2 → 0.0.3

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,8 @@
1
+ {
2
+ "permissions": {
3
+ "allow": [
4
+ "Bash(node -e \"import\\('@hyperspan/html'\\).then\\(m => console.log\\('html export:', typeof m.html\\)\\)\")",
5
+ "Bash(npm run *)"
6
+ ]
7
+ }
8
+ }
package/README.md CHANGED
@@ -60,8 +60,7 @@ export default createSiteConfig({
60
60
  `templates/site-template.ts`:
61
61
 
62
62
  ```ts
63
- import { html } from "@hyperspan/html";
64
- import { createTemplate } from "@stackbox/cms";
63
+ import { createTemplate, html } from "@stackbox/cms";
65
64
  import siteConfig from "../site.config";
66
65
 
67
66
  export const siteTemplate = createTemplate({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stackbox/cms",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "Stackbox CMS engine",
5
5
  "type": "module",
6
6
  "license": "BSD-3-Clause",
package/src/index.ts CHANGED
@@ -1,3 +1,4 @@
1
+ export { html } from "@hyperspan/html";
1
2
  export {
2
3
  createModule,
3
4
  isModule,