phpxui 0.0.2 → 0.0.3
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.
|
@@ -15,7 +15,7 @@ const path_1 = __importDefault(require("path"));
|
|
|
15
15
|
*/
|
|
16
16
|
function copyTailwindCss(force = false) {
|
|
17
17
|
// Path to the CSS bundled with the CLI
|
|
18
|
-
const source = path_1.default.resolve(__dirname, "../
|
|
18
|
+
const source = path_1.default.resolve(__dirname, "../css/tailwind.css");
|
|
19
19
|
// Path inside the user’s project
|
|
20
20
|
const target = path_1.default.resolve(process.cwd(), "src/app/css/tailwind.css");
|
|
21
21
|
if (!force && fs_extra_1.default.existsSync(target)) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "phpxui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"description": "A package for generating Prisma PHP components with a CLI interface.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -33,7 +33,6 @@
|
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"chalk": "^5.4.1",
|
|
36
|
-
"change-case": "^5.4.4",
|
|
37
36
|
"fs-extra": "^11.3.0",
|
|
38
37
|
"node-fetch": "^3.3.2",
|
|
39
38
|
"prompts": "^2.4.2"
|