@lm_fe/core 0.1.201 → 0.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +31 -0
- package/dist/a_chunks/core.src.env.js +19 -0
- package/dist/a_chunks/index.js +736 -0
- package/dist/env/NewListPage.d.ts +2 -0
- package/dist/env/index.d.ts +3 -3
- package/dist/env/init.d.ts +1 -0
- package/dist/env/message.d.ts +2 -0
- package/dist/env/tasks/index.d.ts +3 -1
- package/dist/env/theme_config.d.ts +3 -0
- package/dist/exports.d.ts +20 -5
- package/dist/index.d.ts +1 -0
- package/dist/index.js +15 -324
- package/package.json +23 -12
- package/dist/index.js.map +0 -1
package/README.md
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# yargs-parser +4+
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
The mighty option parser used by.
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
## Example
|
|
11
|
+
|
|
12
|
+
```sh
|
|
13
|
+
npm i yargs-parser --save
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
**Node.js:**
|
|
18
|
+
|
|
19
|
+
```js
|
|
20
|
+
import parser from 'yargs-parser'
|
|
21
|
+
|
|
22
|
+
const argv = parser('--foo=99 --bar=9987930', {
|
|
23
|
+
string: ['bar']
|
|
24
|
+
})
|
|
25
|
+
console.log(argv)
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
## License
|
|
30
|
+
|
|
31
|
+
ISC
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { s as styleInject } from './index.js';
|
|
2
|
+
import '@ant-design/cssinjs';
|
|
3
|
+
import '@lm_fe/components_m';
|
|
4
|
+
import '@lm_fe/env';
|
|
5
|
+
import '@lm_fe/pages';
|
|
6
|
+
import '@lm_fe/pages-fubao';
|
|
7
|
+
import '@lm_fe/pages-mchc';
|
|
8
|
+
import '@lm_fe/service';
|
|
9
|
+
import '@lm_fe/utils';
|
|
10
|
+
import 'react';
|
|
11
|
+
import 'react-dom/client';
|
|
12
|
+
import 'react-router-dom';
|
|
13
|
+
import 'antd';
|
|
14
|
+
import 'antd/lib/locale/zh_CN';
|
|
15
|
+
import '@lm_fe/provoke';
|
|
16
|
+
var css_248z = "td,\nth,\nspan,\ntd,\ndiv,\ninput,\ntextarea,\nbutton {\n font-weight: bold !important;\n}\n";
|
|
17
|
+
var stylesheet = "td,\nth,\nspan,\ntd,\ndiv,\ninput,\ntextarea,\nbutton {\n font-weight: bold !important;\n}\n";
|
|
18
|
+
styleInject(css_248z);
|
|
19
|
+
export { css_248z as default, stylesheet };
|