create-pb-app 1.1.7 → 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 -17
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-pb-app",
3
- "version": "1.1.7",
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,22 +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
-
97
- const useStaticStyles = makeStaticStyles({
98
- '@font-face': {
99
- fontFamily: 'Neue Montreal',
100
- src: 'url("/fonts/NeueMontreal.woff2") format("woff2")',
101
- fontWeight: '1 999',
102
- fontDisplay: 'block'
103
- },
104
- body: {
105
- margin: 0,
106
- fontFamily: 'Neue Montreal'
107
- }
108
- });
109
-
110
- useStaticStyles();
111
95
 
112
96
  const router = createRouter({
113
97
  '/': (ctx) => <Layout><Home /></Layout>