@clickview/auth 0.53.0 → 0.54.0

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/package.json CHANGED
@@ -1,11 +1,13 @@
1
1
  {
2
2
  "name": "@clickview/auth",
3
- "version": "0.53.0",
3
+ "version": "0.54.0",
4
4
  "description": "ClickView Auth",
5
5
  "main": "dist/scripts/bundle.js",
6
+ "type": "module",
6
7
  "scripts": {
7
- "start": "cross-env NODE_ENV=development webpack -w --config ./tooling/webpack.config.js",
8
- "build": "cross-env NODE_ENV=production webpack --config ./tooling/webpack.config.js"
8
+ "start": "vite",
9
+ "type-check": "tsc --noEmit",
10
+ "build": "npm run type-check && vite build"
9
11
  },
10
12
  "repository": {
11
13
  "type": "git",
@@ -18,8 +20,7 @@
18
20
  "author": "Cameron Hill, Shale Kuzmanovski",
19
21
  "license": "ISC",
20
22
  "dependencies": {
21
- "timeago.js": "4.0.2",
22
- "whatwg-fetch": "3.4.1"
23
+ "timeago.js": "4.0.2"
23
24
  },
24
25
  "babel": {
25
26
  "presets": [
@@ -0,0 +1,3 @@
1
+ /// <reference types="vite/client" />
2
+ export {};
3
+
@@ -1,2 +1 @@
1
1
  declare module '*.scss';
2
- declare module '*.svg';
package/vite.config.ts ADDED
@@ -0,0 +1,7 @@
1
+ import config from '../../libs/tooling/vite/vite.base.config';
2
+
3
+ export default config({
4
+ root: __dirname,
5
+ port: 60746,
6
+ entry: './src/index.ts'
7
+ });