File tree Expand file tree Collapse file tree 4 files changed +8
-3
lines changed
test/fixtures/test-package Expand file tree Collapse file tree 4 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 29
29
"import" : " ./src/types/models.js" ,
30
30
"require" : " ./src/types/models.js" ,
31
31
"types" : " ./src/types/models.d.ts"
32
+ },
33
+ "./plugin" : {
34
+ "import" : " ./src/plugin.ts" ,
35
+ "require" : " ./src/plugin.ts" ,
36
+ "types" : " ./src/plugin.d.ts"
32
37
}
33
38
},
34
39
"scripts" : {
Original file line number Diff line number Diff line change 1
- const { PushActionPlugin } = require ( '@finos/git-proxy/src/ plugin' ) ;
1
+ const { PushActionPlugin } = require ( '@finos/git-proxy/plugin' ) ;
2
2
3
3
// test default export
4
4
module . exports = new PushActionPlugin ( async ( req , action ) => {
Original file line number Diff line number Diff line change 1
- const { PushActionPlugin, PullActionPlugin } = require ( '@finos/git-proxy/src/ plugin' ) ;
1
+ const { PushActionPlugin, PullActionPlugin } = require ( '@finos/git-proxy/plugin' ) ;
2
2
3
3
module . exports = {
4
4
foo : new PushActionPlugin ( async ( req , action ) => {
Original file line number Diff line number Diff line change 1
- const { PushActionPlugin } = require ( '@finos/git-proxy/src/ plugin' ) ;
1
+ const { PushActionPlugin } = require ( '@finos/git-proxy/plugin' ) ;
2
2
3
3
class DummyPlugin extends PushActionPlugin {
4
4
constructor ( exec ) {
You can’t perform that action at this time.
0 commit comments