File tree 5 files changed +6
-6
lines changed
5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 28
28
"node" : " >=8.0.0"
29
29
},
30
30
"files" : [
31
- " /lib"
31
+ " . /lib"
32
32
],
33
33
"homepage" : " https://github.com/mdapi-issues/listmetadata-standardvalueset" ,
34
34
"keywords" : [
38
38
" MWE"
39
39
],
40
40
"license" : " MIT" ,
41
- "main" : " /lib/workaround.js" ,
41
+ "main" : " . /lib/workaround.js" ,
42
42
"publishConfig" : {
43
43
"access" : " public"
44
44
},
Original file line number Diff line number Diff line change 1
1
import type { Connection , FileProperties } from 'jsforce' ;
2
2
import MAPPING from './mapping' ;
3
3
4
- export default async function listStandardValueSets (
4
+ export async function listStandardValueSets (
5
5
conn : Connection
6
6
) : Promise < Array < FileProperties > > {
7
7
const availableStandardValueSetNames = [ ] ;
Original file line number Diff line number Diff line change 1
1
import { Org } from '@salesforce/core' ;
2
2
import { expect } from 'chai' ;
3
- import listStandardValueSets from './issue' ;
3
+ import { listStandardValueSets } from './issue' ;
4
4
5
5
describe ( 'listMetadata' , function ( ) {
6
6
this . slow ( 5000 ) ;
Original file line number Diff line number Diff line change 1
1
import type { Connection , FileProperties } from 'jsforce' ;
2
2
3
- export default async function listStandardValueSets (
3
+ export async function listStandardValueSets (
4
4
conn : Connection
5
5
) : Promise < Array < FileProperties > > {
6
6
const fileProperties = await conn . metadata . list ( { type : 'StandardValueSet' } ) ;
Original file line number Diff line number Diff line change 1
1
import { Org } from '@salesforce/core' ;
2
2
import { expect } from 'chai' ;
3
- import listStandardValueSets from '../src/workaround' ;
3
+ import { listStandardValueSets } from '../src/workaround' ;
4
4
5
5
describe ( 'workaround' , function ( ) {
6
6
this . slow ( 5000 ) ;
You can’t perform that action at this time.
0 commit comments