create-pb-app 1.1.6 → 1.1.8

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 +1 -19
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.8",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "create-pb-app": "./src/cli.js"
package/src/templates.js CHANGED
@@ -18,7 +18,7 @@ export function getTemplates(projectName) {
18
18
  },
19
19
  dependencies: {
20
20
  'components-test-pb': 'latest',
21
- 'css-engine-test-pb': 'latest',
21
+ 'calame': 'latest',
22
22
  'jsx-framework-test-pb': 'latest',
23
23
  'looserouter-test-pb': 'latest'
24
24
  },
@@ -92,24 +92,6 @@ dist
92
92
  import { Home } from '../pages';
93
93
  import { createRouter, RouterView } from 'looserouter-test-pb';
94
94
  import { Layout } from './layout';
95
- import { makeStaticStyles } from 'css-engine-test-pb';
96
- import { insertTheme, defaultTheme } from 'components-test-pb';
97
-
98
- const useStaticStyles = makeStaticStyles({
99
- '@font-face': {
100
- fontFamily: 'Neue Montreal',
101
- src: 'url("/fonts/NeueMontreal.woff2") format("woff2")',
102
- fontWeight: '1 999',
103
- fontDisplay: 'block'
104
- },
105
- body: {
106
- margin: 0,
107
- fontFamily: 'Neue Montreal'
108
- }
109
- });
110
-
111
- useStaticStyles();
112
- insertTheme(defaultTheme);
113
95
 
114
96
  const router = createRouter({
115
97
  '/': (ctx) => <Layout><Home /></Layout>