Skip to content

Commit 8a336fc

Browse files
committedAug 12, 2020
move classes from remix-lib to remix-debug
1 parent 479adf8 commit 8a336fc

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+313
-371
lines changed
 

‎apps/remix-ide/src/app/editor/contextView.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'use strict'
22
const yo = require('yo-yo')
3-
const remixLib = require('@remix-project/remix-lib')
4-
const SourceMappingDecoder = remixLib.SourceMappingDecoder
3+
const remixDebug = require('@remix-project/remix-debug')
4+
const SourceMappingDecoder = remixDebug.SourceMappingDecoder
55
const globalRegistry = require('../../global/registry')
66

77
const css = require('./styles/contextView-styles')

‎apps/remix-ide/src/app/editor/contextualListener.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
'use strict'
2-
const remixLib = require('@remix-project/remix-lib')
2+
const remixdebug = require('@remix-project/remix-debug')
33
const csjs = require('csjs-inject')
4-
const SourceMappingDecoder = remixLib.SourceMappingDecoder
5-
const AstWalker = remixLib.AstWalker
4+
const SourceMappingDecoder = remixdebug.SourceMappingDecoder
5+
const AstWalker = remixdebug.AstWalker
66
const EventManager = require('../../lib/events')
77
const globalRegistry = require('../../global/registry')
88
import { Plugin } from '@remixproject/engine'

0 commit comments

Comments
 (0)