This repository has been archived by the owner on Jan 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changed tailwind process method (May break, please test)
- Loading branch information
1 parent
b650d0e
commit 13d6e58
Showing
5 changed files
with
789 additions
and
814 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,52 +1,54 @@ | ||
{ | ||
"name": "paxo-ide", | ||
"version": "1.0.0", | ||
"author": "Paxo IDE contributors", | ||
"maintainers": [ | ||
"Welpike", | ||
"Gabriel" | ||
], | ||
"description": "The official editor for paxo-phone apps development, with support of the paxolib API.", | ||
"private": false, | ||
"license": "GPL-3.0", | ||
"repository": { | ||
"url": "https://github.com/paxo-phone/paxo-ide" | ||
}, | ||
"main": "src/main.js", | ||
"scripts": { | ||
"build": "rollup -c", | ||
"dev": "rollup -c -w", | ||
"start": "electron-forge start", | ||
"tw-build": "npx tailwindcss -i ./src/ui/css/app.css -o ./public/all.css", | ||
"package": "electron-forge package", | ||
"make": "electron-forge make", | ||
"publish": "electron-forge publish" | ||
}, | ||
"devDependencies": { | ||
"@electron-forge/cli": "^6.4.2", | ||
"@electron-forge/maker-deb": "^6.4.2", | ||
"@electron-forge/maker-rpm": "^6.4.2", | ||
"@electron-forge/maker-squirrel": "^6.4.2", | ||
"@electron-forge/maker-zip": "^6.4.2", | ||
"@electron-forge/plugin-auto-unpack-natives": "^6.4.2", | ||
"@rollup/plugin-commonjs": "^24.0.0", | ||
"@rollup/plugin-node-resolve": "^15.0.0", | ||
"@rollup/plugin-terser": "^0.4.0", | ||
"electron": "^26.1.0", | ||
"rollup": "^3.15.0", | ||
"rollup-plugin-css-only": "^4.3.0", | ||
"rollup-plugin-livereload": "^2.0.0", | ||
"rollup-plugin-svelte": "^7.1.2", | ||
"svelte": "^3.55.0", | ||
"svelte-bootstrap-icons": "^3.1.0", | ||
"tailwindcss": "^3.3.3" | ||
}, | ||
"dependencies": { | ||
"@monaco-editor/loader": "^1.3.3", | ||
"electron-squirrel-startup": "^1.0.0", | ||
"monaco-editor": "^0.43.0", | ||
"sirv-cli": "^2.0.0", | ||
"toml": "^3.0.0", | ||
"update-electron-app": "^3.0.0" | ||
} | ||
} | ||
"name": "paxo-ide", | ||
"version": "1.0.0", | ||
"author": "Paxo IDE contributors", | ||
"maintainers": [ | ||
"Welpike", | ||
"Gabriel" | ||
], | ||
"description": "The official editor for paxo-phone apps development, with support of the paxolib API.", | ||
"private": false, | ||
"license": "GPL-3.0", | ||
"repository": { | ||
"url": "https://github.com/paxo-phone/paxo-ide" | ||
}, | ||
"main": "src/main.js", | ||
"scripts": { | ||
"build": "rollup -c", | ||
"dev": "rollup -c -w", | ||
"start": "electron-forge start", | ||
"package": "electron-forge package", | ||
"make": "electron-forge make", | ||
"publish": "electron-forge publish" | ||
}, | ||
"devDependencies": { | ||
"@electron-forge/cli": "^6.4.2", | ||
"@electron-forge/maker-deb": "^6.4.2", | ||
"@electron-forge/maker-rpm": "^6.4.2", | ||
"@electron-forge/maker-squirrel": "^6.4.2", | ||
"@electron-forge/maker-zip": "^6.4.2", | ||
"@electron-forge/plugin-auto-unpack-natives": "^6.4.2", | ||
"@rollup/plugin-commonjs": "^24.0.0", | ||
"@rollup/plugin-node-resolve": "^15.0.0", | ||
"@rollup/plugin-terser": "^0.4.0", | ||
"electron": "^26.1.0", | ||
"rollup": "^3.15.0", | ||
"rollup-plugin-css-only": "^4.3.0", | ||
"rollup-plugin-livereload": "^2.0.0", | ||
"rollup-plugin-svelte": "^7.1.2", | ||
"svelte": "^3.55.0", | ||
"svelte-bootstrap-icons": "^3.1.0", | ||
"tailwindcss": "^3.3.3" | ||
}, | ||
"dependencies": { | ||
"@monaco-editor/loader": "^1.3.3", | ||
"autoprefixer": "^10.4.16", | ||
"electron-squirrel-startup": "^1.0.0", | ||
"monaco-editor": "^0.43.0", | ||
"postcss": "^8.4.33", | ||
"rollup-plugin-postcss": "^4.0.2", | ||
"sirv-cli": "^2.0.0", | ||
"toml": "^3.0.0", | ||
"update-electron-app": "^3.0.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
module.exports = { | ||
plugins: { | ||
tailwindcss: {}, | ||
autoprefixer: {}, | ||
} | ||
} |
Oops, something went wrong.