File tree Expand file tree Collapse file tree 3 files changed +21
-2
lines changed Expand file tree Collapse file tree 3 files changed +21
-2
lines changed Original file line number Diff line number Diff line change 9
9
" /dist/*.js"
10
10
],
11
11
"scripts" : {
12
+ "build_demo" : " npm run compile && vite build" ,
12
13
"clean" : " rimraf dist/" ,
13
14
"dev" : " vite" ,
14
- "build" : " npm run compile && vite build" ,
15
15
"compile" : " tsc --build . src/lib src/test src/demo" ,
16
16
"coverage" : " vitest run --coverage --typecheck" ,
17
17
"doc" : " npm run compile && typedoc && replace-in-files --string '=\" assets/' --replacement '=\" /assets/' docs/404.html" ,
Original file line number Diff line number Diff line change
1
+ /** @license Apache-2.0
2
+ *
3
+ * Copyright 2024 8 Hobbies, LLC <hong@8hobbies.com>
4
+ *
5
+ * Licensed under the Apache License, Version 2.0(the "License");
6
+ * you may not use this file except in compliance with the License.
7
+ * You may obtain a copy of the License at
8
+ *
9
+ * http://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
+ */
17
+
18
+ export * from "./AutoNumericComponent" ;
19
+ export * from "./AutoNumericInput" ;
Original file line number Diff line number Diff line change 17
17
18
18
import { render , screen } from "@testing-library/react" ;
19
19
import AutoNumeric from "autonumeric" ;
20
- import { AutoNumericInput } from "../lib/AutoNumericInput " ;
20
+ import { AutoNumericInput } from "../lib/index " ;
21
21
import { useState } from "react" ;
22
22
import { userEvent } from "@testing-library/user-event" ;
23
23
You can’t perform that action at this time.
0 commit comments