-
-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
See flarum/framework#1367 * Replace gulp with webpack and npm scripts for JS compilation * Set up Travis CI to commit compiled JS * Restructure `js` directory; only one instance of npm, forum/admin are "submodules" * Restructure `less` directory
- Loading branch information
1 parent
a033cac
commit b9ed19a
Showing
28 changed files
with
4,762 additions
and
1,387 deletions.
There are no files selected for viewing
Binary file not shown.
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 |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
.gitignore export-ignore | ||
.travis.yml export-ignore | ||
|
||
js/*/dist/*.js -diff | ||
js/dist/* -diff |
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 |
---|---|---|
|
@@ -2,5 +2,5 @@ | |
composer.phar | ||
.DS_Store | ||
Thumbs.db | ||
bower_components | ||
node_modules | ||
node_modules | ||
js/dist/* |
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,15 @@ | ||
language: minimal | ||
|
||
sudo: false | ||
|
||
cache: | ||
directories: | ||
- $HOME/.npm | ||
|
||
jobs: | ||
include: | ||
- stage: build | ||
if: branch = master AND type = push | ||
script: curl -s https://raw.githubusercontent.com/flarum/core/master/.travis/build.sh | bash -s - | ||
-k $encrypted_e5bd9d54e015_key | ||
-i $encrypted_e5bd9d54e015_iv |
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
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,10 @@ | ||
/* | ||
* This file is part of Flarum. | ||
* | ||
* (c) Toby Zerner <[email protected]> | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
export * from './src/forum'; |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.