-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
588 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
module.exports = { | ||
extends: require.resolve('../../.eslintrc.js'), | ||
}; |
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
export default { | ||
platform: 'browser', | ||
esm: { | ||
output: 'es', | ||
}, | ||
extraBabelPlugins: [ | ||
['@babel/plugin-proposal-decorators', { legacy: true }], | ||
['@babel/plugin-transform-flow-strip-types'], | ||
['@babel/plugin-transform-class-properties', { loose: true }], | ||
['@babel/plugin-transform-private-methods', { loose: true }], | ||
['@babel/plugin-transform-private-property-in-object', { loose: true }], | ||
['babel-plugin-parameter-decorator'], | ||
], | ||
extraBabelPresets: [['@babel/preset-typescript', { onlyRemoveTypeImports: true }]], | ||
}; |
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# @difizen/libro-widget | ||
|
||
## 0.0.2-alpha.0 | ||
|
||
### Patch Changes | ||
|
||
- Initia version | ||
- Updated dependencies | ||
- @difizen/libro-common@0.0.2-alpha.0 | ||
- @difizen/libro-core@0.0.2-alpha.0 | ||
- @difizen/libro-kernel@0.0.2-alpha.0 | ||
- @difizen/libro-rendermime@0.0.2-alpha.0 |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
# libro-widget |
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"presets": ["@babel/preset-env", "@babel/preset-react", "@babel/preset-typescript"], | ||
"plugins": [ | ||
["@babel/plugin-proposal-decorators", { "legacy": true }], | ||
"@babel/plugin-transform-flow-strip-types", | ||
["@babel/plugin-transform-private-methods", { "loose": true }], | ||
["@babel/plugin-transform-private-property-in-object", { "loose": true }], | ||
["@babel/plugin-transform-class-properties", { "loose": true }], | ||
"babel-plugin-parameter-decorator" | ||
] | ||
} |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
import configs from '../../jest.config.mjs'; | ||
|
||
export default { ...configs }; |
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 |
---|---|---|
@@ -0,0 +1,59 @@ | ||
{ | ||
"name": "@difizen/libro-terminal", | ||
"version": "0.0.2-alpha.0", | ||
"description": "", | ||
"keywords": [ | ||
"libro" | ||
], | ||
"repository": "git@github.com:difizen/libro.git", | ||
"license": "MIT", | ||
"type": "module", | ||
"exports": { | ||
".": { | ||
"typings": "./es/index.d.ts", | ||
"default": "./es/index.js" | ||
}, | ||
"./mock": { | ||
"typings": "./es/mock/index.d.ts", | ||
"default": "./es/mock/index.js" | ||
}, | ||
"./es/mock": { | ||
"typings": "./es/mock/index.d.ts", | ||
"default": "./es/mock/index.js" | ||
}, | ||
"./package.json": "./package.json" | ||
}, | ||
"main": "es/index.js", | ||
"module": "es/index.js", | ||
"typings": "es/index.d.ts", | ||
"files": [ | ||
"es", | ||
"src" | ||
], | ||
"scripts": { | ||
"setup": "father build", | ||
"build": "father build", | ||
"test": ": Note: lint task is delegated to test:* scripts", | ||
"test:vitest": "vitest run", | ||
"test:jest": "jest", | ||
"coverage": ": Note: lint task is delegated to coverage:* scripts", | ||
"coverage:vitest": "vitest run --coverage", | ||
"coverage:jest": "jest --coverage", | ||
"lint": ": Note: lint task is delegated to lint:* scripts", | ||
"lint:eslint": "eslint src", | ||
"lint:tsc": "tsc --noEmit" | ||
}, | ||
"dependencies": { | ||
"@difizen/libro-core": "^0.0.2-alpha.0", | ||
"@difizen/libro-common": "^0.0.2-alpha.0", | ||
"@difizen/libro-kernel": "^0.0.2-alpha.0", | ||
"@difizen/mana-app": "alpha" | ||
}, | ||
"peerDependencies": { | ||
"antd": "^5.8.6", | ||
"react": "^18.2.0" | ||
}, | ||
"devDependencies": { | ||
"@types/react": "^18.2.25" | ||
} | ||
} |
Oops, something went wrong.