create-analog 0.2.68 → 0.2.69

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.
@@ -0,0 +1,6 @@
1
+ module.exports = {
2
+ plugins: {
3
+ tailwindcss: {},
4
+ autoprefixer: {},
5
+ },
6
+ };
@@ -0,0 +1,8 @@
1
+ /** @type {import('tailwindcss').Config} */
2
+ module.exports = {
3
+ content: ['./index.html', './src/**/*.{html,ts,md}'],
4
+ theme: {
5
+ extend: {},
6
+ },
7
+ plugins: [],
8
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-analog",
3
- "version": "0.2.68",
3
+ "version": "0.2.69",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "author": "Brandon Roberts",
@@ -45,7 +45,7 @@
45
45
  "nx": "~17.2.0",
46
46
  "jsdom": "^22.1.0",
47
47
  "typescript": "~5.3.0",
48
- "vite": "^5.0.0",
48
+ "vite": "~5.0.0",
49
49
  "vitest": "^1.0.0"
50
50
  }
51
51
  }
@@ -1,6 +1,6 @@
1
1
  /// <reference types="vite/client" />
2
2
 
3
- // Uncomment the lines below to enable types for experimental .ng format support
3
+ // Uncomment the lines below to enable types for experimental .analog format support
4
4
  // declare global {
5
5
  // import type { Component } from '@angular/core';
6
6
  //
@@ -13,28 +13,25 @@
13
13
  // metadata: Omit<
14
14
  // Component,
15
15
  // | 'template'
16
- // | 'templateUrl'
17
16
  // | 'standalone'
18
17
  // | 'changeDetection'
19
- // | 'styleUrls'
20
- // | 'styleUrl'
21
18
  // | 'styles'
22
- // | 'ouputs'
19
+ // | 'outputs'
23
20
  // | 'inputs'
24
21
  // > & { exposes?: unknown[] }
25
22
  // ) => void;
26
23
  // /**
27
24
  // * Invoke the callback when the component is initialized.
28
25
  // */
29
- // onInit: () => void;
26
+ // onInit: (initFn: () => void) => void;
30
27
  // /**
31
28
  // * Invoke the callback when the component is destroyed.
32
29
  // */
33
- // onDestroy: () => void;
30
+ // onDestroy: (destroyFn: () => void) => void;
34
31
  // }
35
32
  // }
36
33
 
37
- // declare module '*.ng' {
34
+ // declare module '*.analog' {
38
35
  // const cmp = any;
39
36
  // export default cmp;
40
37
  // }
@@ -45,7 +45,7 @@
45
45
  "nx": "~17.2.0",
46
46
  "jsdom": "^22.1.0",
47
47
  "typescript": "~5.3.0",
48
- "vite": "^5.0.0",
48
+ "vite": "~5.0.0",
49
49
  "vitest": "^1.0.0"
50
50
  }
51
51
  }