create-pb-app 1.1.5 → 1.1.6

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/templates.js +2 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-pb-app",
3
- "version": "1.1.5",
3
+ "version": "1.1.6",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "create-pb-app": "./src/cli.js"
package/src/templates.js CHANGED
@@ -93,6 +93,7 @@ import { Home } from '../pages';
93
93
  import { createRouter, RouterView } from 'looserouter-test-pb';
94
94
  import { Layout } from './layout';
95
95
  import { makeStaticStyles } from 'css-engine-test-pb';
96
+ import { insertTheme, defaultTheme } from 'components-test-pb';
96
97
 
97
98
  const useStaticStyles = makeStaticStyles({
98
99
  '@font-face': {
@@ -108,6 +109,7 @@ const useStaticStyles = makeStaticStyles({
108
109
  });
109
110
 
110
111
  useStaticStyles();
112
+ insertTheme(defaultTheme);
111
113
 
112
114
  const router = createRouter({
113
115
  '/': (ctx) => <Layout><Home /></Layout>