deploy: current vibn theia state
Made-with: Cursor
This commit is contained in:
89
examples/browser-only/package.json
Normal file
89
examples/browser-only/package.json
Normal file
@@ -0,0 +1,89 @@
|
||||
{
|
||||
"private": true,
|
||||
"name": "@theia/example-browser-only",
|
||||
"version": "1.68.0",
|
||||
"license": "EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0",
|
||||
"theia": {
|
||||
"target": "browser-only",
|
||||
"frontend": {
|
||||
"config": {
|
||||
"applicationName": "Theia Browser-Only Example",
|
||||
"preferences": {
|
||||
"files.enableTrash": false
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"dependencies": {
|
||||
"@theia/ai-chat": "1.68.0",
|
||||
"@theia/ai-chat-ui": "1.68.0",
|
||||
"@theia/ai-code-completion": "1.68.0",
|
||||
"@theia/ai-core": "1.68.0",
|
||||
"@theia/ai-core-ui": "1.68.0",
|
||||
"@theia/ai-history": "1.68.0",
|
||||
"@theia/ai-ollama": "1.68.0",
|
||||
"@theia/ai-openai": "1.68.0",
|
||||
"@theia/ai-scanoss": "1.68.0",
|
||||
"@theia/api-samples": "1.68.0",
|
||||
"@theia/bulk-edit": "1.68.0",
|
||||
"@theia/callhierarchy": "1.68.0",
|
||||
"@theia/collaboration": "1.68.0",
|
||||
"@theia/console": "1.68.0",
|
||||
"@theia/core": "1.68.0",
|
||||
"@theia/debug": "1.68.0",
|
||||
"@theia/editor": "1.68.0",
|
||||
"@theia/editor-preview": "1.68.0",
|
||||
"@theia/file-search": "1.68.0",
|
||||
"@theia/filesystem": "1.68.0",
|
||||
"@theia/getting-started": "1.68.0",
|
||||
"@theia/git": "1.68.0",
|
||||
"@theia/keymaps": "1.68.0",
|
||||
"@theia/markers": "1.68.0",
|
||||
"@theia/memory-inspector": "1.68.0",
|
||||
"@theia/messages": "1.68.0",
|
||||
"@theia/metrics": "1.68.0",
|
||||
"@theia/mini-browser": "1.68.0",
|
||||
"@theia/monaco": "1.68.0",
|
||||
"@theia/navigator": "1.68.0",
|
||||
"@theia/outline-view": "1.68.0",
|
||||
"@theia/output": "1.68.0",
|
||||
"@theia/plugin-dev": "1.68.0",
|
||||
"@theia/plugin-ext": "1.68.0",
|
||||
"@theia/plugin-ext-vscode": "1.68.0",
|
||||
"@theia/plugin-metrics": "1.68.0",
|
||||
"@theia/preferences": "1.68.0",
|
||||
"@theia/preview": "1.68.0",
|
||||
"@theia/process": "1.68.0",
|
||||
"@theia/property-view": "1.68.0",
|
||||
"@theia/scanoss": "1.68.0",
|
||||
"@theia/scm": "1.68.0",
|
||||
"@theia/scm-extra": "1.68.0",
|
||||
"@theia/search-in-workspace": "1.68.0",
|
||||
"@theia/secondary-window": "1.68.0",
|
||||
"@theia/task": "1.68.0",
|
||||
"@theia/terminal": "1.68.0",
|
||||
"@theia/timeline": "1.68.0",
|
||||
"@theia/toolbar": "1.68.0",
|
||||
"@theia/typehierarchy": "1.68.0",
|
||||
"@theia/userstorage": "1.68.0",
|
||||
"@theia/variable-resolver": "1.68.0",
|
||||
"@theia/vsx-registry": "1.68.0",
|
||||
"@theia/workspace": "1.68.0"
|
||||
},
|
||||
"scripts": {
|
||||
"prepare:no-native": "lerna run prepare --scope=\"@theia/re-exports\" && lerna run generate-theia-re-exports --scope=\"@theia/core\"",
|
||||
"clean": "theiaext clean",
|
||||
"build": "theiaext build && npm run -s bundle",
|
||||
"bundle": "theia build --mode development",
|
||||
"compile": "theiaext compile",
|
||||
"start": "theia start",
|
||||
"start:debug": "npm run -s start -- --log-level=debug",
|
||||
"start:watch": "concurrently --kill-others -n tsc,bundle,run -c red,yellow,green \"tsc -b -w --preserveWatchOutput\" \"npm run -s watch:bundle\" \"npm run -s start\"",
|
||||
"watch": "concurrently --kill-others -n tsc,bundle -c red,yellow \"tsc -b -w --preserveWatchOutput\" \"npm run -s watch:bundle\"",
|
||||
"watch:bundle": "theia build --watch --mode development",
|
||||
"watch:compile": "tsc -b -w"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@theia/cli": "1.68.0"
|
||||
}
|
||||
}
|
||||
174
examples/browser-only/tsconfig.json
Normal file
174
examples/browser-only/tsconfig.json
Normal file
@@ -0,0 +1,174 @@
|
||||
{
|
||||
"extends": "../../configs/base.tsconfig",
|
||||
"include": [],
|
||||
"compilerOptions": {
|
||||
"composite": true
|
||||
},
|
||||
"references": [
|
||||
{
|
||||
"path": "../../dev-packages/cli"
|
||||
},
|
||||
{
|
||||
"path": "../../packages/ai-chat"
|
||||
},
|
||||
{
|
||||
"path": "../../packages/ai-chat-ui"
|
||||
},
|
||||
{
|
||||
"path": "../../packages/ai-code-completion"
|
||||
},
|
||||
{
|
||||
"path": "../../packages/ai-core"
|
||||
},
|
||||
{
|
||||
"path": "../../packages/ai-core-ui"
|
||||
},
|
||||
{
|
||||
"path": "../../packages/ai-history"
|
||||
},
|
||||
{
|
||||
"path": "../../packages/ai-ollama"
|
||||
},
|
||||
{
|
||||
"path": "../../packages/ai-openai"
|
||||
},
|
||||
{
|
||||
"path": "../../packages/ai-scanoss"
|
||||
},
|
||||
{
|
||||
"path": "../../packages/bulk-edit"
|
||||
},
|
||||
{
|
||||
"path": "../../packages/callhierarchy"
|
||||
},
|
||||
{
|
||||
"path": "../../packages/collaboration"
|
||||
},
|
||||
{
|
||||
"path": "../../packages/console"
|
||||
},
|
||||
{
|
||||
"path": "../../packages/core"
|
||||
},
|
||||
{
|
||||
"path": "../../packages/debug"
|
||||
},
|
||||
{
|
||||
"path": "../../packages/editor"
|
||||
},
|
||||
{
|
||||
"path": "../../packages/editor-preview"
|
||||
},
|
||||
{
|
||||
"path": "../../packages/file-search"
|
||||
},
|
||||
{
|
||||
"path": "../../packages/filesystem"
|
||||
},
|
||||
{
|
||||
"path": "../../packages/getting-started"
|
||||
},
|
||||
{
|
||||
"path": "../../packages/git"
|
||||
},
|
||||
{
|
||||
"path": "../../packages/keymaps"
|
||||
},
|
||||
{
|
||||
"path": "../../packages/markers"
|
||||
},
|
||||
{
|
||||
"path": "../../packages/memory-inspector"
|
||||
},
|
||||
{
|
||||
"path": "../../packages/messages"
|
||||
},
|
||||
{
|
||||
"path": "../../packages/metrics"
|
||||
},
|
||||
{
|
||||
"path": "../../packages/mini-browser"
|
||||
},
|
||||
{
|
||||
"path": "../../packages/monaco"
|
||||
},
|
||||
{
|
||||
"path": "../../packages/navigator"
|
||||
},
|
||||
{
|
||||
"path": "../../packages/outline-view"
|
||||
},
|
||||
{
|
||||
"path": "../../packages/output"
|
||||
},
|
||||
{
|
||||
"path": "../../packages/plugin-dev"
|
||||
},
|
||||
{
|
||||
"path": "../../packages/plugin-ext"
|
||||
},
|
||||
{
|
||||
"path": "../../packages/plugin-ext-vscode"
|
||||
},
|
||||
{
|
||||
"path": "../../packages/plugin-metrics"
|
||||
},
|
||||
{
|
||||
"path": "../../packages/preferences"
|
||||
},
|
||||
{
|
||||
"path": "../../packages/preview"
|
||||
},
|
||||
{
|
||||
"path": "../../packages/process"
|
||||
},
|
||||
{
|
||||
"path": "../../packages/property-view"
|
||||
},
|
||||
{
|
||||
"path": "../../packages/scanoss"
|
||||
},
|
||||
{
|
||||
"path": "../../packages/scm"
|
||||
},
|
||||
{
|
||||
"path": "../../packages/scm-extra"
|
||||
},
|
||||
{
|
||||
"path": "../../packages/search-in-workspace"
|
||||
},
|
||||
{
|
||||
"path": "../../packages/secondary-window"
|
||||
},
|
||||
{
|
||||
"path": "../../packages/task"
|
||||
},
|
||||
{
|
||||
"path": "../../packages/terminal"
|
||||
},
|
||||
{
|
||||
"path": "../../packages/timeline"
|
||||
},
|
||||
{
|
||||
"path": "../../packages/toolbar"
|
||||
},
|
||||
{
|
||||
"path": "../../packages/typehierarchy"
|
||||
},
|
||||
{
|
||||
"path": "../../packages/userstorage"
|
||||
},
|
||||
{
|
||||
"path": "../../packages/variable-resolver"
|
||||
},
|
||||
{
|
||||
"path": "../../packages/vsx-registry"
|
||||
},
|
||||
{
|
||||
"path": "../../packages/workspace"
|
||||
},
|
||||
{
|
||||
"path": "../api-samples.disabled"
|
||||
}
|
||||
]
|
||||
}
|
||||
18
examples/browser-only/webpack.config.js
Normal file
18
examples/browser-only/webpack.config.js
Normal file
@@ -0,0 +1,18 @@
|
||||
/**
|
||||
* This file can be edited to customize webpack configuration.
|
||||
* To reset delete this file and rerun theia build again.
|
||||
*/
|
||||
// @ts-check
|
||||
const configs = require('./gen-webpack.config.js');
|
||||
|
||||
|
||||
/**
|
||||
* Expose bundled modules on window.theia.moduleName namespace, e.g.
|
||||
* window['theia']['@theia/core/lib/common/uri'].
|
||||
* Such syntax can be used by external code, for instance, for testing.
|
||||
configs[0].module.rules.push({
|
||||
test: /\.js$/,
|
||||
loader: require.resolve('@theia/application-manager/lib/expose-loader')
|
||||
}); */
|
||||
|
||||
module.exports = configs;
|
||||
Reference in New Issue
Block a user