@sbc-connect/nuxt-auth 0.1.6 → 0.1.7

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +9 -0
  2. package/package.json +7 -7
package/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # @sbc-connect/nuxt-auth
2
2
 
3
+ ## 0.1.7
4
+
5
+ ### Patch Changes
6
+
7
+ - [#28](https://github.com/bcgov/connect-nuxt/pull/28) [`68af125`](https://github.com/bcgov/connect-nuxt/commit/68af1259b87846f42010026977411481e53ca8fb) Thanks [@kialj876](https://github.com/kialj876)! - Filling out the pay layer. Ticket bcgov/entity#29337
8
+
9
+ - Updated dependencies [[`68af125`](https://github.com/bcgov/connect-nuxt/commit/68af1259b87846f42010026977411481e53ca8fb)]:
10
+ - @sbc-connect/nuxt-base@0.1.7
11
+
3
12
  ## 0.1.6
4
13
 
5
14
  ### Patch Changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sbc-connect/nuxt-auth",
3
3
  "type": "module",
4
- "version": "0.1.6",
4
+ "version": "0.1.7",
5
5
  "repository": "github:bcgov/connect-nuxt",
6
6
  "license": "BSD-3-Clause",
7
7
  "main": "./nuxt.config.ts",
@@ -12,23 +12,23 @@
12
12
  "nuxt": "^4.0.2",
13
13
  "typescript": "^5.8.3",
14
14
  "vue-tsc": "^3.0.4",
15
- "@sbc-connect/eslint-config": "0.0.5",
16
- "@sbc-connect/playwright-config": "0.0.4",
17
- "@sbc-connect/vitest-config": "0.0.5"
15
+ "@sbc-connect/eslint-config": "0.0.6",
16
+ "@sbc-connect/playwright-config": "0.0.5",
17
+ "@sbc-connect/vitest-config": "0.0.6"
18
18
  },
19
19
  "dependencies": {
20
20
  "@pinia/nuxt": "^0.11.2",
21
21
  "keycloak-js": "^26.2.0",
22
22
  "pinia": "^3.0.3",
23
23
  "pinia-plugin-persistedstate": "^4.4.1",
24
- "@sbc-connect/nuxt-base": "0.1.6"
24
+ "@sbc-connect/nuxt-base": "0.1.7"
25
25
  },
26
26
  "scripts": {
27
27
  "preinstall": "npx only-allow pnpm",
28
- "dev": "nuxi dev .playground",
28
+ "dev": "nuxi dev .playground --dotenv ../.env",
29
29
  "build": "nuxt build .playground",
30
30
  "build:test": "pnpm generate && npx serve .playground/.output/public",
31
- "generate": "nuxt generate .playground",
31
+ "generate": "nuxt generate .playground --dotenv ../.env",
32
32
  "preview": "nuxt preview .playground",
33
33
  "lint": "eslint .",
34
34
  "lint:fix": "eslint --fix .",