forked from wegue-oss/wegue
-
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.
Merge branch 'master' of https://github.com/meggsimum/wegue into gene…
…ric-window-management
- Loading branch information
Showing
15 changed files
with
2,741 additions
and
1,129 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 |
---|---|---|
@@ -1,18 +1,39 @@ | ||
{ | ||
"presets": [ | ||
["env", { | ||
"modules": false, | ||
"targets": { | ||
"browsers": ["> 1%", "last 2 versions", "not ie <= 8"] | ||
[ | ||
"@babel/preset-env", | ||
{ | ||
"corejs": { "version": 3, "proposals": true }, | ||
"useBuiltIns": "usage", | ||
"modules": false, | ||
"targets": { | ||
"browsers": [ | ||
"> 1%", | ||
"last 2 versions", | ||
"not ie <= 8" | ||
] | ||
} | ||
} | ||
}], | ||
"stage-2" | ||
] | ||
], | ||
"plugins": [ | ||
[ | ||
"@babel/plugin-transform-runtime", | ||
{ | ||
"corejs": 3 | ||
} | ||
], | ||
"@babel/plugin-proposal-class-properties" | ||
], | ||
"plugins": ["transform-runtime"], | ||
"env": { | ||
"test": { | ||
"presets": ["env", "stage-2"], | ||
"plugins": ["istanbul"] | ||
"presets": [ | ||
"@babel/preset-env" | ||
], | ||
"plugins": [ | ||
"istanbul", | ||
"@babel/plugin-proposal-class-properties" | ||
] | ||
} | ||
} | ||
} |
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,12 +1,5 @@ | ||
# Wegue App Dir | ||
This directory will contain your Wegue Application. | ||
By using the command `npm run init:app` this directory is populated with | ||
the contents from the `app-starter/` dir. | ||
# Wegue App Starter Dir | ||
This directory contains a Wegue starter app. | ||
By using the command `npm run init:app` this directory is copied to the `app/` directory. | ||
For now this copy will not overwrite files already present in the `app/` dir. | ||
|
||
You can develop your Wegue app by modifying/adding files here, under the `app/` dir, for example: | ||
|
||
* modifying the core `.vue` files like `app/WguApp.vue` and `app/WguAppTemplate.vue` | ||
* placing or modifying custom/app-specific components under `app/components` | ||
* placing or modifying static content like configuration, data, icons and css under `app/static`. | ||
|
||
The default config file is `app/static/app-conf.json`. |
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
Oops, something went wrong.