@dannysir/js-te 0.0.1 → 0.0.2

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/README.md CHANGED
@@ -5,7 +5,7 @@ Jest에서 영감을 받아 만든 가벼운 JavaScript 테스트 프레임워
5
5
  ## 설치
6
6
 
7
7
  ```bash
8
- npm install --save-dev js-te
8
+ npm install --save-dev @dannysir/js-te
9
9
  ```
10
10
 
11
11
  ## 빠른 시작
@@ -7,7 +7,7 @@ export const babelTransformImport = ({types: t}) => {
7
7
  t.identifier('__mockRegistry__'),
8
8
  t.identifier('__mockRegistry__')
9
9
  )],
10
- t.stringLiteral('js-te/src/mock/store.js')
10
+ t.stringLiteral('@dannysir/js-te/src/mock/store.js')
11
11
  );
12
12
  path.node.body.unshift(importStatement);
13
13
  },
@@ -15,7 +15,7 @@ export const babelTransformImport = ({types: t}) => {
15
15
  ImportDeclaration(path) {
16
16
  const source = path.node.source.value;
17
17
 
18
- if (source === 'js-te/src/mock/store.js') {
18
+ if (source === '@dannysir/js-te/src/mock/store.js') {
19
19
  return;
20
20
  }
21
21
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dannysir/js-te",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "type": "module",
5
5
  "description": "JavaScript test library",
6
6
  "main": "index.js",
@@ -46,4 +46,4 @@
46
46
  "@babel/parser": "^7.28.5",
47
47
  "@babel/traverse": "^7.28.5"
48
48
  }
49
- }
49
+ }