Skip to content
This repository has been archived by the owner on Jan 10, 2024. It is now read-only.

Commit

Permalink
Changed tailwind process method (May break, please test)
Browse files Browse the repository at this point in the history
  • Loading branch information
DarkBrines committed Jan 4, 2024
1 parent b650d0e commit 13d6e58
Show file tree
Hide file tree
Showing 5 changed files with 789 additions and 814 deletions.
104 changes: 53 additions & 51 deletions package.json
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"
}
}
6 changes: 6 additions & 0 deletions postcss.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module.exports = {
plugins: {
tailwindcss: {},
autoprefixer: {},
}
}
Loading

0 comments on commit 13d6e58

Please # to comment.