mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-02-23 23:07:46 +01:00
chore(deps): Ripristinato lodash-es
This commit is contained in:
parent
f7a7bcf0c4
commit
febd504fe7
@ -52,7 +52,7 @@
|
||||
"include-media": "^1.4.10",
|
||||
"lit": "^2.1.1",
|
||||
"locale-code": "^2.0.2",
|
||||
"lodash": "npm:lodash-es@^4.17.21",
|
||||
"lodash-es": "^4.17.21",
|
||||
"mithril": "^2.0.4",
|
||||
"mithril-node-render": "^3.0.2",
|
||||
"modern-normalize": "^1.1.0",
|
||||
@ -62,7 +62,7 @@
|
||||
"@maicol07/eslint-config": "^2.1.4",
|
||||
"@openstamanager/vite-config": "github:devcode-it/openstamanager-vite-config",
|
||||
"@types/gulp": "^4.0.0",
|
||||
"@types/lodash": "^4.14.178",
|
||||
"@types/lodash-es": "^4.17.5",
|
||||
"@types/mithril": "^2.0.8",
|
||||
"@types/ziggy-js": "^1.3.1",
|
||||
"concurrently": "^7.0.0",
|
||||
|
14
pnpm-lock.yaml
generated
14
pnpm-lock.yaml
generated
@ -33,7 +33,7 @@ specifiers:
|
||||
'@mdi/font': ^6.5.95
|
||||
'@openstamanager/vite-config': github:devcode-it/openstamanager-vite-config
|
||||
'@types/gulp': ^4.0.0
|
||||
'@types/lodash': ^4.14.178
|
||||
'@types/lodash-es': ^4.17.5
|
||||
'@types/mithril': ^2.0.8
|
||||
'@types/ziggy-js': ^1.3.1
|
||||
async-wait-until: 2.0.12
|
||||
@ -48,7 +48,7 @@ specifiers:
|
||||
laravel-vite: ^0.0.24
|
||||
lit: ^2.1.1
|
||||
locale-code: ^2.0.2
|
||||
lodash: npm:lodash-es@^4.17.21
|
||||
lodash-es: ^4.17.21
|
||||
mithril: ^2.0.4
|
||||
mithril-node-render: ^3.0.2
|
||||
modern-normalize: ^1.1.0
|
||||
@ -104,7 +104,7 @@ dependencies:
|
||||
include-media: 1.4.10
|
||||
lit: 2.1.1
|
||||
locale-code: 2.0.2
|
||||
lodash: /lodash-es/4.17.21
|
||||
lodash-es: 4.17.21
|
||||
mithril: 2.0.4
|
||||
mithril-node-render: 3.0.2_mithril@2.0.4
|
||||
modern-normalize: 1.1.0
|
||||
@ -114,7 +114,7 @@ devDependencies:
|
||||
'@maicol07/eslint-config': 2.1.4
|
||||
'@openstamanager/vite-config': github.com/devcode-it/openstamanager-vite-config/9399c4a34b39c0a80408db47575794f089465be5_sass@1.49.0
|
||||
'@types/gulp': 4.0.9
|
||||
'@types/lodash': 4.14.178
|
||||
'@types/lodash-es': 4.17.5
|
||||
'@types/mithril': 2.0.8
|
||||
'@types/ziggy-js': 1.3.1
|
||||
concurrently: 7.0.0
|
||||
@ -2473,6 +2473,12 @@ packages:
|
||||
resolution: {integrity: sha1-7ihweulOEdK4J7y+UnC86n8+ce4=}
|
||||
dev: true
|
||||
|
||||
/@types/lodash-es/4.17.5:
|
||||
resolution: {integrity: sha512-SHBoI8/0aoMQWAgUHMQ599VM6ZiSKg8sh/0cFqqlQQMyY9uEplc0ULU5yQNzcvdR4ZKa0ey8+vFmahuRbOCT1A==}
|
||||
dependencies:
|
||||
'@types/lodash': 4.14.178
|
||||
dev: true
|
||||
|
||||
/@types/lodash/4.14.178:
|
||||
resolution: {integrity: sha512-0d5Wd09ItQWH1qFbEyQ7oTQ3GZrMfth5JkbN3EvTKLXcHLRDSXeLnlvlOn0wvxVIwK5o2M8JzP/OWz7T3NRsbw==}
|
||||
dev: true
|
||||
|
@ -1,5 +1,5 @@
|
||||
import type {Cash} from 'cash-dom/dist/cash';
|
||||
import {inRange} from 'lodash';
|
||||
import {inRange} from 'lodash-es';
|
||||
import type {
|
||||
Vnode,
|
||||
VnodeDOM
|
||||
|
@ -22,7 +22,7 @@ export default class Mdi extends Component<Attributes> {
|
||||
/**
|
||||
Quando MWC supporterà pienamente le icone SVG si potrà fare così:
|
||||
import * as mdi from '@mdi/js';
|
||||
import {camelCase} from 'lodash/string';
|
||||
import {camelCase} from 'lodash-es';
|
||||
|
||||
return <svg class={`mdi ${vnode.attrs.class ?? ''}`}
|
||||
{...vnode.attrs} viewBox={vnode.attrs.viewBox ?? '0 0 24 24'}>
|
||||
|
@ -10,7 +10,7 @@ import {
|
||||
ToManyRelation,
|
||||
ToOneRelation
|
||||
} from 'coloquent';
|
||||
import {capitalize} from 'lodash';
|
||||
import {capitalize} from 'lodash-es';
|
||||
import type {
|
||||
Children,
|
||||
Vnode,
|
||||
|
@ -2,7 +2,7 @@ import {
|
||||
type PluralResponse,
|
||||
Model as BaseModel
|
||||
} from 'coloquent';
|
||||
import {snakeCase} from 'lodash';
|
||||
import {snakeCase} from 'lodash-es';
|
||||
|
||||
export interface InstantiableModel<T extends Model = Model> {
|
||||
new (): (Model | T) & {[prop: string]: any};
|
||||
|
@ -30,7 +30,7 @@ export default defineConfig(osmConfig({
|
||||
'@material/mwc-textfield',
|
||||
'@material/mwc-top-app-bar',
|
||||
'async-wait-until',
|
||||
'lodash',
|
||||
'lodash-es',
|
||||
'lit',
|
||||
'lit/decorators.js',
|
||||
'cash-dom',
|
||||
|
Loading…
x
Reference in New Issue
Block a user