@popina/cli 5.0.2 → 5.0.3-20260527091921Z

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.
package/package.json CHANGED
@@ -1,28 +1,22 @@
1
1
  {
2
2
  "name": "@popina/cli",
3
- "version": "5.0.2",
3
+ "version": "5.0.3-20260527091921Z",
4
4
  "description": "Popina CLI",
5
+ "license": "UNLICENSED",
6
+ "author": "François Veauvy",
5
7
  "repository": {
6
8
  "type": "git",
7
9
  "url": "https://github.com/popina/pragma-web.git",
8
10
  "directory": "packages/cli"
9
11
  },
10
- "publishConfig": {
11
- "access": "public"
12
- },
13
- "exports": "./build/index.js",
14
12
  "bin": {
15
13
  "popina": "./build/index.js"
16
14
  },
17
- "license": "UNLICENSED",
18
- "types": "index.ts",
19
15
  "type": "module",
20
- "author": "François Veauvy",
21
- "devDependencies": {
22
- "eslint": "^9.19.0",
23
- "@pragma/config": "3.2.0",
24
- "@pragma/eslint": "1.3.7",
25
- "@pragma/tsconfig": "1.0.2"
16
+ "types": "index.ts",
17
+ "exports": "./build/index.js",
18
+ "publishConfig": {
19
+ "access": "public"
26
20
  },
27
21
  "dependencies": {
28
22
  "@clack/core": "^0.3.3",
@@ -37,6 +31,12 @@
37
31
  "tiny-glob": "^0.2.9",
38
32
  "zx": "^8.1.5"
39
33
  },
34
+ "devDependencies": {
35
+ "eslint": "^9.19.0",
36
+ "@pragma/config": "3.3.0",
37
+ "@pragma/eslint": "1.3.8",
38
+ "@pragma/tsconfig": "1.0.2"
39
+ },
40
40
  "scripts": {
41
41
  "build": "NODE_ENV=production tsup",
42
42
  "typecheck": "tsc",
@@ -1,6 +1,7 @@
1
+ import type { PlopTypes } from '@turbo/gen'
2
+
1
3
  import fs from 'fs'
2
4
  import path from 'path'
3
- import type { PlopTypes } from '@turbo/gen'
4
5
  import pluralize from 'pluralize'
5
6
 
6
7
  type EndpointActionValues = {
@@ -1,7 +1,8 @@
1
+ import type { PlopTypes } from '@turbo/gen'
2
+
1
3
  import fs from 'fs'
2
4
  import { createRequire } from 'module'
3
5
  import path from 'path'
4
- import type { PlopTypes } from '@turbo/gen'
5
6
 
6
7
  const require = createRequire(import.meta.url)
7
8
 
@@ -1,6 +1,7 @@
1
1
  import '@testing-library/jest-dom'
2
2
 
3
3
  import { render, screen } from '@testing-library/react'
4
+ import { expect, test } from 'vitest'
4
5
  import React from 'react'
5
6
 
6
7
  import { {{pascalCase componentName}} } from './{{pascalCase componentName}}'