-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🚚 restructure source file tree (#136)
This restructures sources file tree into something hopefully easier to understand: - `src/app`: source code for the web app that embeds training material - `src/build`: source code that builds the previously mentioned app, including the training material - `src/pdf`: source code that builds PDFs from the training material - `src/cli`: source code for the CLI 🚚 Moved files: - `bin/webpack.config*` -> `src/build/` - `bin/sensei.js` -> `src/cli/cli.js` - `src/loaders` -> `src/build/loaders` - `src/{slides,labs,index.*,*.js,assets}` -> `src/app/` 🔥 Removed files: build.sh (not very useful), run.sh (duplicated in readme), Makefile (duplicate of the other two)
- Loading branch information
Showing
39 changed files
with
48 additions
and
53 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
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
require("./src/loaders/slides-json-loader.test.js"); | ||
require("./bin/webpack.config.test.js"); | ||
require("./src/build/loaders/slides-json-loader.test.js"); | ||
require("./src/build/webpack.config.test.js"); |