-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove crates, configs & entries dirs
- Loading branch information
Showing
37 changed files
with
73 additions
and
69 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
dist | ||
node_modules | ||
crate/bin | ||
crate/pkg | ||
crate/target | ||
crate/wasm-pack.log | ||
bin | ||
pkg | ||
target | ||
wasm-pack.log | ||
.idea | ||
|
||
crate/src/generated/** | ||
!crate/src/generated/mod.rs | ||
src/generated/** | ||
!src/generated/mod.rs | ||
!**/.keep |
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.
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 @@ | ||
import "./css/styles.css"; | ||
|
||
(async () => { | ||
// Note: files in `./pkg/` will be created on the first build. | ||
await import("./pkg/index"); | ||
})(); |
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,18 +1,18 @@ | ||
{ | ||
"author": "Martin Kavík <[email protected]>", | ||
"name": "seed-quickstart-webpack", | ||
"version": "0.6.0", | ||
"version": "0.7.0", | ||
"repository": "https://github.com/MartinKavik/seed-quickstart-webpack", | ||
"license": "MIT", | ||
"scripts": { | ||
"start": "yarn generate:css_classes && webpack-dev-server --config configs/webpack.config.js -d", | ||
"start:release": "yarn generate:css_classes && webpack-dev-server --config configs/webpack.config.js --mode=production", | ||
"build": "yarn generate:css_classes && webpack --config configs/webpack.config --mode=development", | ||
"build:release": "yarn generate:css_classes && webpack --config configs/webpack.config --mode=production", | ||
"start": "yarn generate:css_classes && webpack-dev-server --config webpack.config.js -d", | ||
"start:release": "yarn generate:css_classes && webpack-dev-server --config webpack.config.js --mode=production", | ||
"build": "yarn generate:css_classes && webpack --config webpack.config --mode=development", | ||
"build:release": "yarn generate:css_classes && webpack --config webpack.config --mode=production", | ||
"build:prerender": "yarn build:release && yarn prerender", | ||
"serve:dist": "yarn serve -s -l 8000 dist", | ||
"prerender": "yarn concurrently -k -s first \"yarn serve:dist\" \"wait-on http://localhost:8000/ && react-snap\"", | ||
"generate:css_classes": "webpack --config configs/webpack.css_classes.config --mode=development" | ||
"generate:css_classes": "webpack --config webpack.css_classes.config --mode=development" | ||
}, | ||
"reactSnap": { | ||
"source": "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
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,3 +1,3 @@ | ||
// File `css_classes.rs` is (re)created during webpack compilation. | ||
// (see `/configs/postcss.config.js`) | ||
// (see `postcss.config.js`) | ||
pub mod css_classes; |
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
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,4 @@ | ||
{ | ||
"extends": "./tsconfig.base", | ||
"include": ["./static/index.css_classes.ts"] | ||
} |
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