Skip to content

Commit

Permalink
Add babel and postcss before getting ready for "beta" release
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Henning Thorsen committed Oct 26, 2019
1 parent b0915e3 commit fa145f4
Show file tree
Hide file tree
Showing 9 changed files with 3,656 additions and 1,001 deletions.
5 changes: 4 additions & 1 deletion .ackrc
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
--ignore-dir=assets/cache
--ignore-dir=public/asset
--ignore-dir=public/docs
--ignore-dir=public/fonts
--ignore-dir=public/images
--ignore-dir=local
4 changes: 4 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
Revision history for perl distribution Convos

1.00 Not Released
- Changed frontend to use Sveltejs
- Removed the ShareDialog plugin

0.99_40 2019-02-08T23:05:00+0100
- Switch order of isconnect and ison to allow authentication with nickserv before join
- Remove POD plugin which has been deprecated from Mojo core.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ See [convos.by](http://convos.by) for more details.

The backend is powered by [Mojolicious](http://mojolicious.org), while the
frontend is held together by the progressive JavaScript framework
[Vue](https://vuejs.org/).
[Svelte](https://svelte.dev/).

# Quick start guide

Expand Down
28 changes: 20 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,22 +7,34 @@
"dev": "MOJO_IRC_DEBUG=1 CONVOS_DEBUG=1 PERL5LIB=$PWD/lib ./script/convos webpack --listen http://*:4000",
"lint": "ROLLUP_WATCH=yes rollup -c"
},
"browserslist": [
"ie >= 11",
">1%"
],
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"eslint-plugin-svelte3": "^1.2.3",
"node-sass": "^4.12.0",
"postcss": "^7.0.18",
"postcss-preset-env": "^6.7.0",
"rollup": "^1.12.3",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-bundle-html": "^0.2.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-eslint": "^6.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-scss": "^1.0.2",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-svelte": "^5.1.0",
"rollup-plugin-terser": "^5.1.2"
"rollup-plugin-terser": "^5.1.2",
"rollup-plugin-visualizer": "^2.6.0",
"svelte": "^3.4.2"
},
"dependencies": {
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/runtime": "^7.6.2",
"@fortawesome/fontawesome-free": "^5.8.2",
"emojione": "^4.5.0",
"eslint-plugin-svelte3": "^1.2.3",
"highlight.js": "^9.15.10",
"node-sass": "^4.12.0",
"rollup": "^1.12.3",
"rollup-plugin-eslint": "^6.0.0",
"svelte": "^3.4.2"
"highlight.js": "^9.15.10"
}
}
Loading

0 comments on commit fa145f4

Please sign in to comment.