-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
restructure, make independent from host, prevent pollution of host
- Loading branch information
Showing
28 changed files
with
835 additions
and
723 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.idea/ | ||
.timestamp-install | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
*.png binary | ||
*.ico binary | ||
*.jpg binary |
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 |
---|---|---|
|
@@ -3,6 +3,5 @@ dist/ | |
prod/ | ||
icons/build | ||
npm-debug.log | ||
themes.json | ||
static/assets/img/genmapthumbs/* | ||
yarn-error.log |
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 @@ | ||
--modules-folder /node_modules |
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,39 +1,39 @@ | ||
{ | ||
"name": "QWC2App", | ||
"version": "2021.11.24", | ||
"description": "QGIS Web Client 2 application", | ||
"author": "Sourcepole", | ||
"license": "BSD-2-Clause", | ||
"repository": "[email protected]:sourcepole/qwc2-demo-app.git", | ||
"private": true, | ||
"workspaces": [ | ||
"qwc2" | ||
], | ||
"devDependencies": { | ||
"babel-loader": "8.2.3", | ||
"css-loader": "6.4.0", | ||
"eslint": "7.32.0", | ||
"eslint-plugin-react": "7.26.1", | ||
"source-map-loader": "3.0.0", | ||
"string-replace-loader": "3.0.3", | ||
"style-loader": "3.3.1", | ||
"webpack": "5.59.1", | ||
"webpack-bundle-size-analyzer": "3.1.0", | ||
"webpack-cli": "4.9.1", | ||
"webpack-dev-server": "4.3.1", | ||
"html-webpack-plugin": "5.4.0", | ||
"clean-webpack-plugin": "4.0.0", | ||
"copy-webpack-plugin": "9.0.0" | ||
}, | ||
"scripts": { | ||
"prod": "webpack --mode production --progress", | ||
"start": "webpack serve --mode development --progress --host 0.0.0.0 --port 8081", | ||
"report": "webpack --profile -m static > stats.html", | ||
"iconfont": "node qwc2/scripts/makeIconkit.js", | ||
"themesconfig": "node qwc2/scripts/themesConfig.js", | ||
"tsupdate": "node qwc2/scripts/updateTranslations.js", | ||
"build": "npm run prod", | ||
"analyze": "webpack --mode production --json | webpack-bundle-size-analyzer", | ||
"release": "node -e \"process.exit(require('os').platform() === 'win32' ? 0 : 1)\" && qwc2\\scripts\\package-commands.bat release || ./qwc2/scripts/package-commands.sh release" | ||
} | ||
"name": "QWC2App", | ||
"version": "2021.11.24", | ||
"description": "QGIS Web Client 2 application", | ||
"author": "Sourcepole", | ||
"license": "BSD-2-Clause", | ||
"repository": "[email protected]:sourcepole/qwc2-demo-app.git", | ||
"private": true, | ||
"workspaces": [ | ||
"../qwc2" | ||
], | ||
"devDependencies": { | ||
"babel-loader": "8.2.3", | ||
"css-loader": "6.4.0", | ||
"eslint": "7.32.0", | ||
"eslint-plugin-react": "7.26.1", | ||
"source-map-loader": "3.0.0", | ||
"string-replace-loader": "3.0.3", | ||
"style-loader": "3.3.1", | ||
"webpack": "5.59.1", | ||
"webpack-bundle-size-analyzer": "3.1.0", | ||
"webpack-cli": "4.9.1", | ||
"webpack-dev-server": "4.3.1", | ||
"html-webpack-plugin": "5.4.0", | ||
"clean-webpack-plugin": "4.0.0", | ||
"copy-webpack-plugin": "9.0.0" | ||
}, | ||
"scripts": { | ||
"analyze": "/node_modules/webpack/bin/webpack.js --mode production --json | webpack-bundle-size-analyzer", | ||
"start": "/node_modules/webpack/bin/webpack.js serve --mode development --progress --host 0.0.0.0 --port 8081", | ||
"build": "npm run prod", | ||
"prod": "/node_modules/webpack/bin/webpack.js --mode production --progress", | ||
"release": "/qwc2/scripts/package-commands.sh release", | ||
"report": "/node_modules/webpack/bin/webpack.js --profile -m static > stats.html", | ||
"themesconfig": "node /qwc2/scripts/themesConfig.js", | ||
"tsupdate": "node /qwc2/scripts/updateTranslations.js", | ||
"iconfont": "node /qwc2/scripts/makeIconkit.js" | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.