Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Luigi config meets es6 #313

Merged
merged 42 commits into from
Jan 21, 2019
Merged
Show file tree
Hide file tree
Changes from 38 commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
788c928
Create fully-functional es6 transpiling
parostatkiem-zz Jan 3, 2019
3e8c001
Modularize config
parostatkiem-zz Jan 3, 2019
91047b6
introduce 'helpers' file
parostatkiem-zz Jan 3, 2019
da97bcc
Ignore generated config
parostatkiem-zz Jan 3, 2019
b6e9676
Use class-properties feature & add description to generated file
parostatkiem-zz Jan 3, 2019
f5a25bb
remove old extendedConfiguration file
parostatkiem-zz Jan 3, 2019
1d70ef5
Use class-properties
parostatkiem-zz Jan 3, 2019
8a7529b
Cleanup
parostatkiem-zz Jan 3, 2019
8dc3995
Rename bundled config
parostatkiem-zz Jan 3, 2019
0865513
Remove obsolete line from config script
parostatkiem-zz Jan 3, 2019
d9a1205
Merge branch 'master' of https://github.com/kyma-project/luigi into L…
parostatkiem-zz Jan 3, 2019
2a3a568
fix wrong config file path
parostatkiem-zz Jan 3, 2019
72652c8
Merge branch 'master' of https://github.com/kyma-project/luigi into L…
parostatkiem-zz Jan 8, 2019
f8307e1
Extract projectDetailNavigation to a separate file
parostatkiem-zz Jan 8, 2019
eddd9ea
Remove obsolete lines
parostatkiem-zz Jan 8, 2019
e394cd6
Remove webpack-cli
parostatkiem-zz Jan 8, 2019
fdf9222
Mention /docs path in webpack banner
parostatkiem-zz Jan 8, 2019
e265b65
Remove 'concurrently' dependency
parostatkiem-zz Jan 8, 2019
0891798
Move 'luigi-config' folder outside 'assets'
parostatkiem-zz Jan 8, 2019
afb4a76
Add 'buildConfig' command to 'build'
parostatkiem-zz Jan 9, 2019
0e03df0
Add bundled configuration to repo
parostatkiem-zz Jan 9, 2019
e7380e6
Revert "Add bundled configuration to repo"
parostatkiem-zz Jan 9, 2019
25ba51a
Create setup for non-framework
parostatkiem-zz Jan 9, 2019
bc2d8c2
add some exclusive es6 goodies to basicConfiguration
parostatkiem-zz Jan 10, 2019
67db347
Create Angular setup script
parostatkiem-zz Jan 10, 2019
45a5670
Revert "add some exclusive es6 goodies to basicConfiguration"
parostatkiem-zz Jan 10, 2019
f55fcca
Separate buildConfig command in no-framework setup
parostatkiem-zz Jan 10, 2019
14d7aa4
Prepare boilerplates for SapUi and Vue scripts
parostatkiem-zz Jan 10, 2019
d41fd81
Remove sapui and vue scripts
parostatkiem-zz Jan 10, 2019
8786b29
Update application-setup.md
parostatkiem-zz Jan 10, 2019
c601cf4
Bring back 'concurrently'
parostatkiem-zz Jan 10, 2019
556be72
Merge branch 'master' of https://github.com/kyma-project/luigi into L…
parostatkiem-zz Jan 14, 2019
b8dab28
Update extendedConfig
parostatkiem-zz Jan 14, 2019
ebb9e4f
Include non-framework & Angular setups scripts in readme
parostatkiem-zz Jan 14, 2019
5f086a9
Merge branch 'master' of https://github.com/kyma-project/luigi into L…
parostatkiem-zz Jan 15, 2019
ee594dd
Merge branch 'master' of https://github.com/kyma-project/luigi into L…
parostatkiem-zz Jan 17, 2019
5101dd9
Update application-setup.md
parostatkiem-zz Jan 17, 2019
2cc1d39
Update Angular script
parostatkiem-zz Jan 17, 2019
55467f7
Merge branch 'master' of https://github.com/kyma-project/luigi into L…
parostatkiem-zz Jan 18, 2019
ac18a95
Merge branch 'master' of https://github.com/kyma-project/luigi into L…
parostatkiem-zz Jan 18, 2019
a1e607b
Update config
parostatkiem-zz Jan 18, 2019
0c7c2b2
Update docs/application-setup.md
bszwarc Jan 18, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions core/examples/luigi-sample-angular/.babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"presets": ["@babel/preset-env"],
"plugins": ["@babel/plugin-proposal-class-properties"]
}
1 change: 1 addition & 0 deletions core/examples/luigi-sample-angular/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,4 @@ Thumbs.db

# config
/src/assets/devconfig.js
/src/assets/*.bundle.js
Loading