create-fluxstack 1.5.3 → 1.5.4

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.
@@ -165,7 +165,7 @@ export class FluxStackConfig extends LiveComponent<FluxStackConfigState> {
165
165
 
166
166
  framework: {
167
167
  name: 'FluxStack',
168
- version: '1.5.3',
168
+ version: '1.5.4',
169
169
  description: 'Modern Full-Stack TypeScript Framework with Live Components',
170
170
  author: 'FluxStack Team',
171
171
  license: 'MIT'
@@ -88,6 +88,13 @@ export class ProjectCreator {
88
88
  join(rootDir, 'config'),
89
89
  join(this.targetDir, 'config')
90
90
  )
91
+
92
+ // Copy plugins
93
+ await this.copyDirectory(
94
+ join(rootDir, 'plugins'),
95
+ join(this.targetDir, 'plugins')
96
+ )
97
+
91
98
  }
92
99
 
93
100
  private async copyDirectory(src: string, dest: string, exclude: string[] = []) {
@@ -2,4 +2,4 @@
2
2
  * FluxStack Framework Version
3
3
  * Single source of truth for version number
4
4
  */
5
- export const FLUXSTACK_VERSION = '1.5.3'
5
+ export const FLUXSTACK_VERSION = '1.5.4'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-fluxstack",
3
- "version": "1.5.3",
3
+ "version": "1.5.4",
4
4
  "description": "⚡ Revolutionary full-stack TypeScript framework with Declarative Config System, Elysia + React + Bun",
5
5
  "keywords": [
6
6
  "framework",
@@ -1,66 +1,66 @@
1
- {
2
- "name": "@fluxstack/crypto-auth-plugin",
3
- "version": "1.0.0",
4
- "description": "Plugin de autenticação criptográfica Ed25519 para FluxStack",
5
- "main": "index.ts",
6
- "types": "index.ts",
7
- "exports": {
8
- ".": {
9
- "import": "./index.ts",
10
- "types": "./index.ts"
11
- },
12
- "./client": {
13
- "import": "./client/index.ts",
14
- "types": "./client/index.ts"
15
- },
16
- "./server": {
17
- "import": "./server/index.ts",
18
- "types": "./server/index.ts"
19
- }
20
- },
21
- "keywords": [
22
- "fluxstack",
23
- "plugin",
24
- "authentication",
25
- "ed25519",
26
- "cryptography",
27
- "security",
28
- "react",
29
- "typescript"
30
- ],
31
- "author": "FluxStack Team",
32
- "license": "MIT",
33
- "peerDependencies": {
34
- "react": ">=16.8.0"
35
- },
36
- "peerDependenciesMeta": {
37
- "react": {
38
- "optional": true
39
- }
40
- },
41
- "dependencies": {
42
- "@noble/curves": "1.2.0",
43
- "@noble/hashes": "1.3.2"
44
- },
45
- "devDependencies": {
46
- "@types/react": "^18.0.0",
47
- "typescript": "^5.0.0"
48
- },
49
- "fluxstack": {
50
- "plugin": true,
51
- "version": "^1.0.0",
52
- "hooks": [
53
- "setup",
54
- "onServerStart",
55
- "onRequest",
56
- "onResponse"
57
- ],
58
- "category": "auth",
59
- "tags": [
60
- "authentication",
61
- "ed25519",
62
- "cryptography",
63
- "security"
64
- ]
65
- }
1
+ {
2
+ "name": "@fluxstack/crypto-auth-plugin",
3
+ "version": "1.0.0",
4
+ "description": "Plugin de autenticação criptográfica Ed25519 para FluxStack",
5
+ "main": "index.ts",
6
+ "types": "index.ts",
7
+ "exports": {
8
+ ".": {
9
+ "import": "./index.ts",
10
+ "types": "./index.ts"
11
+ },
12
+ "./client": {
13
+ "import": "./client/index.ts",
14
+ "types": "./client/index.ts"
15
+ },
16
+ "./server": {
17
+ "import": "./server/index.ts",
18
+ "types": "./server/index.ts"
19
+ }
20
+ },
21
+ "keywords": [
22
+ "fluxstack",
23
+ "plugin",
24
+ "authentication",
25
+ "ed25519",
26
+ "cryptography",
27
+ "security",
28
+ "react",
29
+ "typescript"
30
+ ],
31
+ "author": "FluxStack Team",
32
+ "license": "MIT",
33
+ "peerDependencies": {
34
+ "react": ">=16.8.0"
35
+ },
36
+ "peerDependenciesMeta": {
37
+ "react": {
38
+ "optional": true
39
+ }
40
+ },
41
+ "dependencies": {
42
+ "@noble/curves": "1.2.0",
43
+ "@noble/hashes": "1.3.2"
44
+ },
45
+ "devDependencies": {
46
+ "@types/react": "^18.0.0",
47
+ "typescript": "^5.0.0"
48
+ },
49
+ "fluxstack": {
50
+ "plugin": true,
51
+ "version": "^1.0.0",
52
+ "hooks": [
53
+ "setup",
54
+ "onServerStart",
55
+ "onRequest",
56
+ "onResponse"
57
+ ],
58
+ "category": "auth",
59
+ "tags": [
60
+ "authentication",
61
+ "ed25519",
62
+ "cryptography",
63
+ "security"
64
+ ]
65
+ }
66
66
  }