create-pb-app 1.1.6 → 1.1.7

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 +0 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-pb-app",
3
- "version": "1.1.6",
3
+ "version": "1.1.7",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "create-pb-app": "./src/cli.js"
package/src/templates.js CHANGED
@@ -93,7 +93,6 @@ 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';
97
96
 
98
97
  const useStaticStyles = makeStaticStyles({
99
98
  '@font-face': {
@@ -109,7 +108,6 @@ const useStaticStyles = makeStaticStyles({
109
108
  });
110
109
 
111
110
  useStaticStyles();
112
- insertTheme(defaultTheme);
113
111
 
114
112
  const router = createRouter({
115
113
  '/': (ctx) => <Layout><Home /></Layout>