You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Boilerplate for Vue.js & Typescript, base on Parcel bundler, copied from [masonz/parcel-vue-ts](https://github.com/masonz/parcel-vue-ts) template and modified (updated dependencies, dropped parcle-plugin-vue, since it is natively supported now).
Parcel has a development server built in, which will automatically rebuild your app as you change files and supports hot module replacement for fast development.
29
43
30
44
### Production
45
+
46
+
```shell
47
+
pnpm run build
31
48
```
32
-
npm/yarn run build
33
-
```
49
+
34
50
When you build production, parcel defaults to enable miniatation.
35
51
36
52
### Unit tests
37
-
```
38
-
npm/yarn run test:unit
39
-
```
40
-
Unit test the code using jest,and you can run through ` npm run test:coverage ` to get the test coverage.
41
53
54
+
```shell
55
+
phpm run test:unit
56
+
```
42
57
58
+
Unit test the code using jest,and you can run through `pnpm run test:coverage ` to get the test coverage.
0 commit comments