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

Restructuring #299

Merged
merged 23 commits into from
Jul 18, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
60f86f3
[restructuring] extracted core
akosyakov Jul 13, 2017
9a91cf7
[restructuring] configure lerna to build core
akosyakov Jul 13, 2017
1986a64
[restructuring] added filesystem extension
akosyakov Jul 13, 2017
858663c
[restructuring] added example-browser
akosyakov Jul 14, 2017
cf61dbf
[restructuring] enable tests
akosyakov Jul 15, 2017
1ca6dbe
[travis] removed script
akosyakov Jul 15, 2017
db06220
[restructuring] use default lerna layout
akosyakov Jul 15, 2017
381a233
[restructuring] adde the extension generator
akosyakov Jul 15, 2017
db155d4
[restructuring] added remaining extension
akosyakov Jul 15, 2017
582a263
[extension-generator] added `testSupport` option
akosyakov Jul 15, 2017
5cdbf78
[resturcturing] declared extensions
akosyakov Jul 16, 2017
8db8c07
[restructruing] ignore extemples' package.json
akosyakov Jul 16, 2017
2d08f4e
[restructuring] adapter generator-theia + added electron example
akosyakov Jul 16, 2017
de0ab3c
[monaco] updated keybinding integration
akosyakov Jul 16, 2017
3d13d02
[examples] fixed test dependencies
akosyakov Jul 16, 2017
f42cfac
added ts-node as a dev dependency
akosyakov Jul 16, 2017
e7883f4
[generator-theia] fixed reading metadata before install
akosyakov Jul 16, 2017
1e7043d
moved electron dependencies to core
akosyakov Jul 16, 2017
7543ec2
[monaco] rolled back to 0.8.0
akosyakov Jul 18, 2017
0c91a1d
[resturcturing] update developing docs
akosyakov Jul 18, 2017
a8cd0ea
[generator-theia] moved local dependency paths to yo config
akosyakov Jul 18, 2017
650e876
[restructuring] rolled back to @phosphor/widgets 0.1.7 to fix layouting
akosyakov Jul 18, 2017
861dc30
Merge remote-tracking branch 'origin/master' into ak/restructuring
akosyakov Jul 18, 2017
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
8 changes: 7 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,10 @@ lib
.idea
.metadata
jdt.ls-java-project
download
download
lerna-debug.log
.nyc_output
coverage
packages/*/package.json
examples/*/package.json
examples/*/src-gen
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ before_script:
before_install:
- "npm install -g npm@^4"
- "google-chrome-stable --headless --disable-gpu --remote-debugging-port=9222 http://localhost &"
script: chmod a+x ./config/scripts/travis-ci-build.sh && ./config/scripts/travis-ci-build.sh
notifications:
webhooks:
urls:
Expand Down
6 changes: 3 additions & 3 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"outFiles": [
"${workspaceRoot}/examples/browser/src-gen/backend/main.js",
"${workspaceRoot}/examples/browser/lib/**/*.js",
"${workspaceRoot}/examples/browser/node_modules/theia-core/lib/**/*.js"
"${workspaceRoot}/packages/*/lib/**/*.js"
]
},
{
Expand All @@ -32,7 +32,7 @@
"outFiles": [
"${workspaceRoot}/examples/browser/src-gen/backend/main.js",
"${workspaceRoot}/examples/browser/lib/**/*.js",
"${workspaceRoot}/examples/browser/node_modules/theia-core/lib/**/*.js"
"${workspaceRoot}/packages/*/lib/**/*.js"
]
},
{
Expand All @@ -50,7 +50,7 @@
"--colors",
"${file}",
"--opts",
"${workspaceRoot}/config/mocha/mocha.opts"
"${workspaceRoot}/packages/mocha.opts"
],
"sourceMaps": true,
"internalConsoleOptions": "openOnSessionStart",
Expand Down
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// - Mac: $HOME/Library/Application Support/Code/User/settings.json
{
"tslint.enable": true,
"tslint.configFile": "./config/tslint/tslint.json",
"tslint.configFile": "packages/tslint.json",
"editor.formatOnSave": true,
"search.exclude": {
"**/node_modules": true,
Expand Down
34 changes: 0 additions & 34 deletions config/generator-theia/src/browser/browser-frontend-generator.ts

This file was deleted.

45 changes: 0 additions & 45 deletions config/generator-theia/src/browser/browser-package-generator.ts

This file was deleted.

45 changes: 0 additions & 45 deletions config/generator-theia/src/electron/electron-package-generator.ts

This file was deleted.

4 changes: 0 additions & 4 deletions config/local-dependency-manager/.gitignore

This file was deleted.

75 changes: 0 additions & 75 deletions config/local-dependency-manager/README.md

This file was deleted.

2 changes: 0 additions & 2 deletions config/local-dependency-manager/bin/ldm

This file was deleted.

Loading