Skip to content

Commit

Permalink
Merge pull request #36 from uw-it-aca/develop
Browse files Browse the repository at this point in the history
1.0.6 Release
  • Loading branch information
charlon authored Nov 16, 2022
2 parents f6d685b + 3c98361 commit 80dc29e
Show file tree
Hide file tree
Showing 47 changed files with 1,969 additions and 351 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
.DS_Store
node_modules
/dist
package-lock.json

# local env files
Expand Down
30 changes: 0 additions & 30 deletions .npmignore

This file was deleted.

3 changes: 3 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
{
"recommendations": [
"editorconfig.editorconfig",
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"vue.volar",
"vue.vscode-typescript-vue-plugin",
"stylelint.vscode-stylelint"
Expand Down
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,16 @@ FROM us-docker.pkg.dev/uwit-mci-axdd/containers/nginx-container:1.1.2 AS node-bu

USER acait

COPY --chown=acait:acait index.html package.json vite.config.js /app/
COPY --chown=acait:acait index.html package.json vite.config.js vite-lib.config.js /app/
COPY --chown=acait:acait src /app/src
COPY --chown=acait:acait public /app/dist
COPY --chown=acait:acait public /app/public

RUN . /app/bin/activate &&\
npm install --production &&\
npm install vite &&\
npm run build
npm run build:lib &&\
npm run build:web


FROM pre-app-container as app-container
Expand Down
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,16 @@ npm install
npm run dev
```

### Compile and Minify for Production
### Compile and Build documentation website

```sh
npm run build
npm run build:web
```

### Compile and Build component library

```sh
npm run build:lib
```

### Run Unit Tests with [Vitest](https://vitest.dev/)
Expand Down
Loading

0 comments on commit 80dc29e

Please sign in to comment.