@parcel/codeframe 2.0.0-nightly.107 → 2.0.0-nightly.1074
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/lib/codeframe.js +36064 -132
- package/lib/codeframe.js.map +1 -0
- package/package.json +21 -5
- package/src/codeframe.js +158 -92
- package/test/codeframe.test.js +222 -11
- package/test/fixtures/a.js +13 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import test from 'test';
|
|
2
|
+
import component from './component';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* This is a comment
|
|
6
|
+
*/
|
|
7
|
+
import Tooltip from '../tooltip';
|
|
8
|
+
import VisuallyHidden from '../visually-hidden';
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* This is another comment
|
|
12
|
+
*/
|
|
13
|
+
import {Label} from './label';
|