Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
baas-ide
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
guxukai
baas-ide
Commits
0f654603
Commit
0f654603
authored
Jun 30, 2021
by
filip mertens
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mv to core-plugin package
parent
0ce42c1c
Hide whitespace changes
Inline
Side-by-side
Showing
44 changed files
with
39 additions
and
333 deletions
+39
-333
app.js
apps/remix-ide/src/app.js
+1
-5
fileProvider.js
apps/remix-ide/src/app/files/fileProvider.js
+1
-1
landing-page.js
apps/remix-ide/src/app/ui/landing-page/landing-page.js
+1
-1
cmdInterpreterAPI.js
apps/remix-ide/src/lib/cmdInterpreterAPI.js
+1
-1
.eslintrc
libs/remix-core-plugin/.eslintrc
+1
-0
README.md
libs/remix-core-plugin/README.md
+1
-1
.eslintrc
libs/remix-core-plugin/compiler-artefacts/.eslintrc
+0
-1
index.ts
libs/remix-core-plugin/compiler-artefacts/src/index.ts
+0
-1
.eslintrc
libs/remix-core-plugin/compiler-content-imports/.eslintrc
+0
-1
README.md
libs/remix-core-plugin/compiler-content-imports/README.md
+0
-3
package.json
libs/remix-core-plugin/compiler-content-imports/package.json
+0
-11
index.ts
libs/remix-core-plugin/compiler-content-imports/src/index.ts
+0
-1
tsconfig.json
.../remix-core-plugin/compiler-content-imports/tsconfig.json
+0
-10
tsconfig.lib.json
...ix-core-plugin/compiler-content-imports/tsconfig.lib.json
+0
-12
.eslintrc
libs/remix-core-plugin/compiler-fetch-and-compile/.eslintrc
+0
-1
README.md
libs/remix-core-plugin/compiler-fetch-and-compile/README.md
+0
-3
package.json
...remix-core-plugin/compiler-fetch-and-compile/package.json
+0
-11
index.ts
...remix-core-plugin/compiler-fetch-and-compile/src/index.ts
+0
-1
tsconfig.json
...emix-core-plugin/compiler-fetch-and-compile/tsconfig.json
+0
-10
tsconfig.lib.json
...-core-plugin/compiler-fetch-and-compile/tsconfig.lib.json
+0
-12
.eslintrc
libs/remix-core-plugin/compiler-metadata/.eslintrc
+0
-1
README.md
libs/remix-core-plugin/compiler-metadata/README.md
+0
-3
package.json
libs/remix-core-plugin/compiler-metadata/package.json
+0
-11
index.ts
libs/remix-core-plugin/compiler-metadata/src/index.ts
+0
-1
tsconfig.json
libs/remix-core-plugin/compiler-metadata/tsconfig.json
+0
-10
tsconfig.lib.json
libs/remix-core-plugin/compiler-metadata/tsconfig.lib.json
+0
-12
.eslintrc
...mix-core-plugin/offset-line-to-column-converter/.eslintrc
+0
-1
README.md
...mix-core-plugin/offset-line-to-column-converter/README.md
+0
-3
package.json
...-core-plugin/offset-line-to-column-converter/package.json
+0
-11
index.ts
...-core-plugin/offset-line-to-column-converter/src/index.ts
+0
-1
tsconfig.json
...core-plugin/offset-line-to-column-converter/tsconfig.json
+0
-10
tsconfig.lib.json
...-plugin/offset-line-to-column-converter/tsconfig.lib.json
+0
-12
package.json
libs/remix-core-plugin/package.json
+12
-10
index.ts
libs/remix-core-plugin/src/index.ts
+4
-0
compiler-artefacts.ts
libs/remix-core-plugin/src/lib/compiler-artefacts.ts
+0
-0
compiler-content-imports.ts
libs/remix-core-plugin/src/lib/compiler-content-imports.ts
+0
-0
compiler-fetch-and-compile.ts
libs/remix-core-plugin/src/lib/compiler-fetch-and-compile.ts
+0
-0
compiler-metadata.ts
libs/remix-core-plugin/src/lib/compiler-metadata.ts
+0
-0
offset-line-to-column-converter.ts
...ix-core-plugin/src/lib/offset-line-to-column-converter.ts
+0
-0
tsconfig.json
libs/remix-core-plugin/tsconfig.json
+1
-1
tsconfig.lib.json
libs/remix-core-plugin/tsconfig.lib.json
+1
-1
nx.json
nx.json
+1
-14
tsconfig.json
tsconfig.json
+5
-15
workspace.json
workspace.json
+9
-129
No files found.
apps/remix-ide/src/app.js
View file @
0f654603
...
@@ -17,11 +17,7 @@ import { VerticalIcons } from './app/components/vertical-icons'
...
@@ -17,11 +17,7 @@ import { VerticalIcons } from './app/components/vertical-icons'
import
{
LandingPage
}
from
'./app/ui/landing-page/landing-page'
import
{
LandingPage
}
from
'./app/ui/landing-page/landing-page'
import
{
MainPanel
}
from
'./app/components/main-panel'
import
{
MainPanel
}
from
'./app/components/main-panel'
import
{
CompilerArtefacts
}
from
'@remix-project/compiler-artefacts'
import
{
OffsetToLineColumnConverter
,
CompilerMetadata
,
CompilerArtefacts
,
FetchAndCompile
,
CompilerImports
}
from
'@remix-project/core-plugin'
import
{
CompilerImports
}
from
'@remix-project/compiler-content-imports'
import
{
FetchAndCompile
}
from
'@remix-project/compiler-fetch-and-compile'
import
{
OffsetToLineColumnConverter
}
from
'@remix-project/offset-line-to-column-converter'
import
{
CompilerMetadata
}
from
'@remix-project/compiler-metadata'
import
migrateFileSystem
from
'./migrateFileSystem'
import
migrateFileSystem
from
'./migrateFileSystem'
...
...
apps/remix-ide/src/app/files/fileProvider.js
View file @
0f654603
'use strict'
'use strict'
import
{
CompilerImports
}
from
'@remix-project/co
mpiler-content-imports
'
import
{
CompilerImports
}
from
'@remix-project/co
re-plugin
'
const
EventManager
=
require
(
'events'
)
const
EventManager
=
require
(
'events'
)
const
modalDialogCustom
=
require
(
'../ui/modal-dialog-custom'
)
const
modalDialogCustom
=
require
(
'../ui/modal-dialog-custom'
)
const
tooltip
=
require
(
'../ui/tooltip'
)
const
tooltip
=
require
(
'../ui/tooltip'
)
...
...
apps/remix-ide/src/app/ui/landing-page/landing-page.js
View file @
0f654603
import
*
as
packageJson
from
'../../../../../../package.json'
import
*
as
packageJson
from
'../../../../../../package.json'
import
{
ViewPlugin
}
from
'@remixproject/engine-web'
import
{
ViewPlugin
}
from
'@remixproject/engine-web'
import
{
migrateToWorkspace
}
from
'../../../migrateFileSystem'
import
{
migrateToWorkspace
}
from
'../../../migrateFileSystem'
import
{
CompilerImports
}
from
'@remix-project/co
mpiler-content-imports
'
import
{
CompilerImports
}
from
'@remix-project/co
re-plugin
'
import
JSZip
from
'jszip'
import
JSZip
from
'jszip'
const
yo
=
require
(
'yo-yo'
)
const
yo
=
require
(
'yo-yo'
)
...
...
apps/remix-ide/src/lib/cmdInterpreterAPI.js
View file @
0f654603
'use strict'
'use strict'
import
{
CompilerImports
}
from
'@remix-project/co
mpiler-content-imports
'
import
{
CompilerImports
}
from
'@remix-project/co
re-plugin
'
var
yo
=
require
(
'yo-yo'
)
var
yo
=
require
(
'yo-yo'
)
var
async
=
require
(
'async'
)
var
async
=
require
(
'async'
)
var
EventManager
=
require
(
'../lib/events'
)
var
EventManager
=
require
(
'../lib/events'
)
...
...
libs/remix-core-plugin/.eslintrc
0 → 100644
View file @
0f654603
{ "extends": "../../.eslintrc", "rules": {}, "ignorePatterns": ["!**/*"] }
libs/remix-core-plugin/
compiler-artefacts/
README.md
→
libs/remix-core-plugin/README.md
View file @
0f654603
#
compiler-artefacts
#
remix-core-plugin-core-plugin
This library was generated with
[
Nx
](
https://nx.dev
)
.
This library was generated with
[
Nx
](
https://nx.dev
)
.
libs/remix-core-plugin/compiler-artefacts/.eslintrc
deleted
100644 → 0
View file @
0ce42c1c
{ "extends": "../../../.eslintrc", "rules": {}, "ignorePatterns": ["!**/*"] }
libs/remix-core-plugin/compiler-artefacts/src/index.ts
deleted
100644 → 0
View file @
0ce42c1c
export
*
from
'./lib/compiler-artefacts'
libs/remix-core-plugin/compiler-content-imports/.eslintrc
deleted
100644 → 0
View file @
0ce42c1c
{ "extends": "../../../.eslintrc", "rules": {}, "ignorePatterns": ["!**/*"] }
libs/remix-core-plugin/compiler-content-imports/README.md
deleted
100644 → 0
View file @
0ce42c1c
# compiler-content-imports
This library was generated with
[
Nx
](
https://nx.dev
)
.
libs/remix-core-plugin/compiler-content-imports/package.json
deleted
100644 → 0
View file @
0ce42c1c
{
"name"
:
"@remix-project/compiler-content-imports"
,
"version"
:
"0.0.1"
,
"description"
:
"This library was generated with [Nx](https://nx.dev)."
,
"main"
:
"index.js"
,
"scripts"
:
{
"test"
:
"echo
\"
Error: no test specified
\"
&& exit 1"
},
"author"
:
"Remix Team"
,
"license"
:
"ISC"
}
libs/remix-core-plugin/compiler-content-imports/src/index.ts
deleted
100644 → 0
View file @
0ce42c1c
export
*
from
'./lib/compiler-content-imports'
libs/remix-core-plugin/compiler-content-imports/tsconfig.json
deleted
100644 → 0
View file @
0ce42c1c
{
"extends"
:
"../../../tsconfig.json"
,
"files"
:
[],
"include"
:
[],
"references"
:
[
{
"path"
:
"./tsconfig.lib.json"
}
]
}
libs/remix-core-plugin/compiler-content-imports/tsconfig.lib.json
deleted
100644 → 0
View file @
0ce42c1c
{
"extends"
:
"./tsconfig.json"
,
"compilerOptions"
:
{
"module"
:
"commonjs"
,
"outDir"
:
"../../../dist/out-tsc"
,
"declaration"
:
true
,
"rootDir"
:
"./src"
,
"types"
:
[
"node"
]
},
"exclude"
:
[
"**/*.spec.ts"
],
"include"
:
[
"**/*.ts"
]
}
libs/remix-core-plugin/compiler-fetch-and-compile/.eslintrc
deleted
100644 → 0
View file @
0ce42c1c
{ "extends": "../../../.eslintrc", "rules": {}, "ignorePatterns": ["!**/*"] }
libs/remix-core-plugin/compiler-fetch-and-compile/README.md
deleted
100644 → 0
View file @
0ce42c1c
# compiler-fetch-and-compile
This library was generated with
[
Nx
](
https://nx.dev
)
.
libs/remix-core-plugin/compiler-fetch-and-compile/package.json
deleted
100644 → 0
View file @
0ce42c1c
{
"name"
:
"@remix-project/compiler-fetch-and-compile"
,
"version"
:
"0.0.1"
,
"description"
:
"This library was generated with [Nx](https://nx.dev)."
,
"main"
:
"index.js"
,
"scripts"
:
{
"test"
:
"echo
\"
Error: no test specified
\"
&& exit 1"
},
"author"
:
"Remix Team"
,
"license"
:
"ISC"
}
libs/remix-core-plugin/compiler-fetch-and-compile/src/index.ts
deleted
100644 → 0
View file @
0ce42c1c
export
*
from
'./lib/compiler-fetch-and-compile'
libs/remix-core-plugin/compiler-fetch-and-compile/tsconfig.json
deleted
100644 → 0
View file @
0ce42c1c
{
"extends"
:
"../../../tsconfig.json"
,
"files"
:
[],
"include"
:
[],
"references"
:
[
{
"path"
:
"./tsconfig.lib.json"
}
]
}
libs/remix-core-plugin/compiler-fetch-and-compile/tsconfig.lib.json
deleted
100644 → 0
View file @
0ce42c1c
{
"extends"
:
"./tsconfig.json"
,
"compilerOptions"
:
{
"module"
:
"commonjs"
,
"outDir"
:
"../../../dist/out-tsc"
,
"declaration"
:
true
,
"rootDir"
:
"./src"
,
"types"
:
[
"node"
]
},
"exclude"
:
[
"**/*.spec.ts"
],
"include"
:
[
"**/*.ts"
]
}
libs/remix-core-plugin/compiler-metadata/.eslintrc
deleted
100644 → 0
View file @
0ce42c1c
{ "extends": "../../../.eslintrc", "rules": {}, "ignorePatterns": ["!**/*"] }
libs/remix-core-plugin/compiler-metadata/README.md
deleted
100644 → 0
View file @
0ce42c1c
# remix-core-plugin-compiler-metadata
This library was generated with
[
Nx
](
https://nx.dev
)
.
libs/remix-core-plugin/compiler-metadata/package.json
deleted
100644 → 0
View file @
0ce42c1c
{
"name"
:
"@remix-project/compiler-metadata"
,
"version"
:
"0.0.1"
,
"description"
:
"This library was generated with [Nx](https://nx.dev)."
,
"main"
:
"index.js"
,
"scripts"
:
{
"test"
:
"echo
\"
Error: no test specified
\"
&& exit 1"
},
"author"
:
"Remix Team"
,
"license"
:
"ISC"
}
libs/remix-core-plugin/compiler-metadata/src/index.ts
deleted
100644 → 0
View file @
0ce42c1c
export
*
from
'./lib/compiler-metadata'
libs/remix-core-plugin/compiler-metadata/tsconfig.json
deleted
100644 → 0
View file @
0ce42c1c
{
"extends"
:
"../../../tsconfig.json"
,
"files"
:
[],
"include"
:
[],
"references"
:
[
{
"path"
:
"./tsconfig.lib.json"
}
]
}
libs/remix-core-plugin/compiler-metadata/tsconfig.lib.json
deleted
100644 → 0
View file @
0ce42c1c
{
"extends"
:
"./tsconfig.json"
,
"compilerOptions"
:
{
"module"
:
"commonjs"
,
"outDir"
:
"../../../dist/out-tsc"
,
"declaration"
:
true
,
"rootDir"
:
"./src"
,
"types"
:
[
"node"
]
},
"exclude"
:
[
"**/*.spec.ts"
],
"include"
:
[
"**/*.ts"
]
}
libs/remix-core-plugin/offset-line-to-column-converter/.eslintrc
deleted
100644 → 0
View file @
0ce42c1c
{ "extends": "../../../.eslintrc", "rules": {}, "ignorePatterns": ["!**/*"] }
libs/remix-core-plugin/offset-line-to-column-converter/README.md
deleted
100644 → 0
View file @
0ce42c1c
# offset-line-to-column-converter
This library was generated with
[
Nx
](
https://nx.dev
)
.
libs/remix-core-plugin/offset-line-to-column-converter/package.json
deleted
100644 → 0
View file @
0ce42c1c
{
"name"
:
"@remix-project/offset-line-to-column-converter"
,
"version"
:
"0.0.1"
,
"description"
:
"This library was generated with [Nx](https://nx.dev)."
,
"main"
:
"index.js"
,
"scripts"
:
{
"test"
:
"echo
\"
Error: no test specified
\"
&& exit 1"
},
"author"
:
"Remix Team"
,
"license"
:
"ISC"
}
libs/remix-core-plugin/offset-line-to-column-converter/src/index.ts
deleted
100644 → 0
View file @
0ce42c1c
export
*
from
'./lib/offset-line-to-column-converter'
libs/remix-core-plugin/offset-line-to-column-converter/tsconfig.json
deleted
100644 → 0
View file @
0ce42c1c
{
"extends"
:
"../../../tsconfig.json"
,
"files"
:
[],
"include"
:
[],
"references"
:
[
{
"path"
:
"./tsconfig.lib.json"
}
]
}
libs/remix-core-plugin/offset-line-to-column-converter/tsconfig.lib.json
deleted
100644 → 0
View file @
0ce42c1c
{
"extends"
:
"./tsconfig.json"
,
"compilerOptions"
:
{
"module"
:
"commonjs"
,
"outDir"
:
"../../../dist/out-tsc"
,
"declaration"
:
true
,
"rootDir"
:
"./src"
,
"types"
:
[
"node"
]
},
"exclude"
:
[
"**/*.spec.ts"
],
"include"
:
[
"**/*.ts"
]
}
libs/remix-core-plugin/
compiler-artefacts/
package.json
→
libs/remix-core-plugin/package.json
View file @
0f654603
{
{
"name"
:
"@remix-project/compiler-artefacts"
,
"name"
:
"@remix-project/core-plugin"
,
"version"
:
"0.0.1"
,
"version"
:
"0.0.1"
,
"description"
:
"This library was generated with [Nx](https://nx.dev)."
,
"description"
:
"This library was generated with [Nx](https://nx.dev)."
,
"main"
:
"index.js"
,
"main"
:
"index.js"
,
"scripts"
:
{
"scripts"
:
{
"test"
:
"echo
\"
Error: no test specified
\"
&& exit 1"
"test"
:
"echo
\"
Error: no test specified
\"
&& exit 1"
},
},
"author"
:
"Remix Team"
,
"author"
:
"Remix Team"
,
"license"
:
"ISC"
"license"
:
"ISC"
}
}
\ No newline at end of file
libs/remix-core-plugin/src/index.ts
0 → 100644
View file @
0f654603
export
*
from
'./lib/offset-line-to-column-converter'
export
*
from
'./lib/compiler-metadata'
export
*
from
'./lib/compiler-fetch-and-compile'
export
*
from
'./lib/offset-line-to-column-converter'
libs/remix-core-plugin/
compiler-artefacts/
src/lib/compiler-artefacts.ts
→
libs/remix-core-plugin/src/lib/compiler-artefacts.ts
View file @
0f654603
File moved
libs/remix-core-plugin/
compiler-content-imports/
src/lib/compiler-content-imports.ts
→
libs/remix-core-plugin/src/lib/compiler-content-imports.ts
View file @
0f654603
File moved
libs/remix-core-plugin/
compiler-fetch-and-compile/
src/lib/compiler-fetch-and-compile.ts
→
libs/remix-core-plugin/src/lib/compiler-fetch-and-compile.ts
View file @
0f654603
File moved
libs/remix-core-plugin/
compiler-metadata/
src/lib/compiler-metadata.ts
→
libs/remix-core-plugin/src/lib/compiler-metadata.ts
View file @
0f654603
File moved
libs/remix-core-plugin/
offset-line-to-column-converter/
src/lib/offset-line-to-column-converter.ts
→
libs/remix-core-plugin/src/lib/offset-line-to-column-converter.ts
View file @
0f654603
File moved
libs/remix-core-plugin/
compiler-artefacts/
tsconfig.json
→
libs/remix-core-plugin/tsconfig.json
View file @
0f654603
{
{
"extends"
:
"../../
../
tsconfig.json"
,
"extends"
:
"../../tsconfig.json"
,
"files"
:
[],
"files"
:
[],
"include"
:
[],
"include"
:
[],
"references"
:
[
"references"
:
[
...
...
libs/remix-core-plugin/
compiler-artefacts/
tsconfig.lib.json
→
libs/remix-core-plugin/tsconfig.lib.json
View file @
0f654603
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
"extends"
:
"./tsconfig.json"
,
"extends"
:
"./tsconfig.json"
,
"compilerOptions"
:
{
"compilerOptions"
:
{
"module"
:
"commonjs"
,
"module"
:
"commonjs"
,
"outDir"
:
"../../
../
dist/out-tsc"
,
"outDir"
:
"../../dist/out-tsc"
,
"declaration"
:
true
,
"declaration"
:
true
,
"rootDir"
:
"./src"
,
"rootDir"
:
"./src"
,
"types"
:
[
"node"
]
"types"
:
[
"node"
]
...
...
nx.json
View file @
0f654603
...
@@ -102,20 +102,7 @@
...
@@ -102,20 +102,7 @@
"remix-ui-checkbox"
:
{
"remix-ui-checkbox"
:
{
"tags"
:
[]
"tags"
:
[]
},
},
"compiler-artefacts"
:
{
"remix-core-plugin"
:
{
"tags"
:
[],
"implicitDependencies"
:
[
"remix-lib"
,
"remix-solidity"
]
},
"compiler-fetch-and-compile"
:
{
"tags"
:
[]
},
"compiler-content-imports"
:
{
"tags"
:
[]
},
"offset-line-to-column-converter"
:
{
"tags"
:
[]
},
"compiler-metadata"
:
{
"tags"
:
[]
"tags"
:
[]
}
}
}
}
...
...
tsconfig.json
View file @
0f654603
...
@@ -39,22 +39,12 @@
...
@@ -39,22 +39,12 @@
"@remix-ui/toaster"
:
[
"libs/remix-ui/toaster/src/index.ts"
],
"@remix-ui/toaster"
:
[
"libs/remix-ui/toaster/src/index.ts"
],
"@remix-ui/file-explorer"
:
[
"libs/remix-ui/file-explorer/src/index.ts"
],
"@remix-ui/file-explorer"
:
[
"libs/remix-ui/file-explorer/src/index.ts"
],
"@remix-ui/workspace"
:
[
"libs/remix-ui/workspace/src/index.ts"
],
"@remix-ui/workspace"
:
[
"libs/remix-ui/workspace/src/index.ts"
],
"@remix-ui/static-analyser"
:
[
"libs/remix-ui/static-analyser/src/index.ts"
],
"@remix-ui/static-analyser"
:
[
"@remix-ui/checkbox"
:
[
"libs/remix-ui/checkbox/src/index.ts"
],
"libs/remix-ui/static-analyser/src/index.ts"
"@remix-project/compiler-artefacts"
:
[
"libs/remix-core-plugin/compiler-artefacts/src/index.ts"
],
"@remix-project/compiler-fetch-and-compile"
:
[
"libs/remix-core-plugin/compiler-fetch-and-compile/src/index.ts"
],
"@remix-project/compiler-content-imports"
:
[
"libs/remix-core-plugin/compiler-content-imports/src/index.ts"
],
],
"@remix-project/offset-line-to-column-converter"
:
[
"@remix-ui/checkbox"
:
[
"libs/remix-ui/checkbox/src/index.ts"
],
"libs/remix-core-plugin/offset-line-to-column-converter/src/index.ts"
"@remix-project/core-plugin"
:
[
],
"libs/remix-core-plugin/src/index.ts"
"@remix-project/compiler-metadata"
:
[
"libs/remix-core-plugin/compiler-metadata/src/index.ts"
]
]
}
}
},
},
...
...
workspace.json
View file @
0f654603
...
@@ -761,9 +761,9 @@
...
@@ -761,9 +761,9 @@
}
}
}
}
},
},
"
compiler-artefacts
"
:
{
"
remix-core-plugin
"
:
{
"root"
:
"libs/remix-core-plugin
/compiler-artefacts
"
,
"root"
:
"libs/remix-core-plugin"
,
"sourceRoot"
:
"libs/remix-core-plugin/
compiler-artefacts/
src"
,
"sourceRoot"
:
"libs/remix-core-plugin/src"
,
"projectType"
:
"library"
,
"projectType"
:
"library"
,
"schematics"
:
{},
"schematics"
:
{},
"architect"
:
{
"architect"
:
{
...
@@ -772,141 +772,21 @@
...
@@ -772,141 +772,21 @@
"options"
:
{
"options"
:
{
"linter"
:
"eslint"
,
"linter"
:
"eslint"
,
"tsConfig"
:
[
"tsConfig"
:
[
"libs/remix-core-plugin/
compiler-artefacts/
tsconfig.lib.json"
"libs/remix-core-plugin/tsconfig.lib.json"
],
],
"exclude"
:
[
"exclude"
:
[
"**/node_modules/**"
,
"**/node_modules/**"
,
"!libs/remix-core-plugin/
compiler-artefacts/
**/*"
"!libs/remix-core-plugin/**/*"
]
]
}
}
},
},
"build"
:
{
"build"
:
{
"builder"
:
"@nrwl/node:package"
,
"builder"
:
"@nrwl/node:package"
,
"options"
:
{
"options"
:
{
"outputPath"
:
"dist/libs/core-plugin/compiler-artefacts"
,
"outputPath"
:
"dist/libs/core-plugin"
,
"tsConfig"
:
"libs/remix-core-plugin/compiler-artefacts/tsconfig.lib.json"
,
"tsConfig"
:
"libs/remix-core-plugin/tsconfig.lib.json"
,
"packageJson"
:
"libs/remix-core-plugin/compiler-artefacts/package.json"
,
"packageJson"
:
"libs/remix-core-plugin/package.json"
,
"main"
:
"libs/remix-core-plugin/compiler-artefacts/src/index.ts"
"main"
:
"libs/remix-core-plugin/src/index.ts"
}
}
}
},
"compiler-fetch-and-compile"
:
{
"root"
:
"libs/remix-core-plugin/compiler-fetch-and-compile"
,
"sourceRoot"
:
"libs/remix-core-plugin/compiler-fetch-and-compile/src"
,
"projectType"
:
"library"
,
"schematics"
:
{},
"architect"
:
{
"lint"
:
{
"builder"
:
"@nrwl/linter:lint"
,
"options"
:
{
"linter"
:
"eslint"
,
"tsConfig"
:
[
"libs/remix-core-plugin/compiler-fetch-and-compile/tsconfig.lib.json"
],
"exclude"
:
[
"**/node_modules/**"
,
"!libs/remix-core-plugin/compiler-fetch-and-compile/**/*"
]
}
},
"build"
:
{
"builder"
:
"@nrwl/node:package"
,
"options"
:
{
"outputPath"
:
"dist/libs/core-plugin/compiler-fetch-and-compile"
,
"tsConfig"
:
"libs/remix-core-plugin/compiler-fetch-and-compile/tsconfig.lib.json"
,
"packageJson"
:
"libs/remix-core-plugin/compiler-fetch-and-compile/package.json"
,
"main"
:
"libs/remix-core-plugin/compiler-fetch-and-compile/src/index.ts"
}
}
}
},
"compiler-content-imports"
:
{
"root"
:
"libs/remix-core-plugin/compiler-content-imports"
,
"sourceRoot"
:
"libs/remix-core-plugin/compiler-content-imports/src"
,
"projectType"
:
"library"
,
"schematics"
:
{},
"architect"
:
{
"lint"
:
{
"builder"
:
"@nrwl/linter:lint"
,
"options"
:
{
"linter"
:
"eslint"
,
"tsConfig"
:
[
"libs/remix-core-plugin/compiler-content-imports/tsconfig.lib.json"
],
"exclude"
:
[
"**/node_modules/**"
,
"!libs/remix-core-plugin/compiler-content-imports/**/*"
]
}
},
"build"
:
{
"builder"
:
"@nrwl/node:package"
,
"options"
:
{
"outputPath"
:
"dist/libs/core-plugin/compiler-content-imports"
,
"tsConfig"
:
"libs/remix-core-plugin/compiler-content-imports/tsconfig.lib.json"
,
"packageJson"
:
"libs/remix-core-plugin/compiler-content-imports/package.json"
,
"main"
:
"libs/remix-core-plugin/compiler-content-imports/src/index.ts"
}
}
}
},
"offset-line-to-column-converter"
:
{
"root"
:
"libs/remix-core-plugin/offset-line-to-column-converter"
,
"sourceRoot"
:
"libs/remix-core-plugin/offset-line-to-column-converter/src"
,
"projectType"
:
"library"
,
"schematics"
:
{},
"architect"
:
{
"lint"
:
{
"builder"
:
"@nrwl/linter:lint"
,
"options"
:
{
"linter"
:
"eslint"
,
"tsConfig"
:
[
"libs/remix-core-plugin/offset-line-to-column-converter/tsconfig.lib.json"
],
"exclude"
:
[
"**/node_modules/**"
,
"!libs/remix-core-plugin/offset-line-to-column-converter/**/*"
]
}
},
"build"
:
{
"builder"
:
"@nrwl/node:package"
,
"options"
:
{
"outputPath"
:
"dist/libs/core-plugin/offset-line-to-column-converter"
,
"tsConfig"
:
"libs/remix-core-plugin/offset-line-to-column-converter/tsconfig.lib.json"
,
"packageJson"
:
"libs/remix-core-plugin/offset-line-to-column-converter/package.json"
,
"main"
:
"libs/remix-core-plugin/coffset-line-to-column-converter/src/index.ts"
}
}
}
},
"compiler-metadata"
:
{
"root"
:
"libs/remix-core-plugin/compiler-metadata"
,
"sourceRoot"
:
"libs/remix-core-plugin/compiler-metadata/src"
,
"projectType"
:
"library"
,
"schematics"
:
{},
"architect"
:
{
"lint"
:
{
"builder"
:
"@nrwl/linter:lint"
,
"options"
:
{
"linter"
:
"eslint"
,
"tsConfig"
:
[
"libs/remix-core-plugin/compiler-metadata/tsconfig.lib.json"
],
"exclude"
:
[
"**/node_modules/**"
,
"!libs/remix-core-plugin/compiler-metadata/**/*"
]
}
},
"build"
:
{
"builder"
:
"@nrwl/node:package"
,
"options"
:
{
"outputPath"
:
"dist/libs/core-plugin/compiler-metadata"
,
"tsConfig"
:
"libs/remix-core-plugin/compiler-metadata/tsconfig.lib.json"
,
"packageJson"
:
"libs/remix-core-plugin/compiler-metadata/package.json"
,
"main"
:
"libs/remix-core-plugin/compiler-metadata/src/index.ts"
}
}
}
}
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment