@taujs/create-taujs 0.3.0 → 0.3.2

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/dist/index.js +6 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -390,6 +390,12 @@ export default defineConfig({
390
390
  host: 'localhost',
391
391
  hmrPort: 5174,
392
392
  },
393
+ // Declared Vite surface - applied to dev and build. See https://taujs.dev/reference/taujs-config/#vite-configuration
394
+ // vite: {
395
+ // define: { __APP_VERSION__: JSON.stringify('0.0.0') },
396
+ // plugins: [],
397
+ // },
398
+ // alias: { '@components': './src/client/shared/components' },
393
399
  apps: [
394
400
  {
395
401
  appId: 'main',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taujs/create-taujs",
3
- "version": "0.3.0",
3
+ "version": "0.3.2",
4
4
  "description": "Scaffold a new τjs application",
5
5
  "author": "Aoede <taujs@aoede.uk.net> (https://www.aoede.uk.net)",
6
6
  "homepage": "https://taujs.dev/",