@sbc-connect/nuxt-auth 0.1.0 → 0.1.2

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/CHANGELOG.md ADDED
@@ -0,0 +1,19 @@
1
+ # @sbc-connect/nuxt-auth
2
+
3
+ ## 0.1.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [#5](https://github.com/bcgov/connect-nuxt/pull/5) [`2999779`](https://github.com/bcgov/connect-nuxt/commit/29997796bd3908b2c5ba04319b26cbb00bffe0fc) Thanks [@kialj876](https://github.com/kialj876)! - Updated fonts propagation in base, cleaned up dependencies in layers
8
+
9
+ - Updated dependencies [[`2999779`](https://github.com/bcgov/connect-nuxt/commit/29997796bd3908b2c5ba04319b26cbb00bffe0fc)]:
10
+ - @sbc-connect/nuxt-base@0.1.2
11
+
12
+ ## 0.1.1
13
+
14
+ ### Patch Changes
15
+
16
+ - [#3](https://github.com/bcgov/connect-nuxt/pull/3) [`401b62a`](https://github.com/bcgov/connect-nuxt/commit/401b62a465c338cb745c14db645797ffaac1ddab) Thanks [@kialj876](https://github.com/kialj876)! - Layer updates
17
+
18
+ - Updated dependencies [[`401b62a`](https://github.com/bcgov/connect-nuxt/commit/401b62a465c338cb745c14db645797ffaac1ddab)]:
19
+ - @sbc-connect/nuxt-base@0.1.1
@@ -1,5 +1,2 @@
1
- /* @import "tailwindcss";
2
- @import "@nuxt/ui";
3
- @source "../../../node_modules/@sbc-connect/nuxt-base"; */
4
- @import "#base/modules/assets/runtime/assets/core-tw.css";
5
- @source "../../../";
1
+ @import "#base/modules/assets/runtime/assets/core-main.css";
2
+ @source "../../../app/";
@@ -0,0 +1,12 @@
1
+ <template>
2
+ <div class="bg-yellow-100 p-5">
3
+ Auth - should have bg-yellow-100
4
+ <HelloWorld />
5
+ <h3 class="text-red-700">
6
+ Auth - should be red-700
7
+ </h3>
8
+ <p class="text-bcGovColor-navDivider">
9
+ Auth - should be bcGovColor-navDivider
10
+ </p>
11
+ </div>
12
+ </template>
@@ -0,0 +1,3 @@
1
+ import eslintConfig from '@sbc-connect/eslint-config'
2
+
3
+ export default eslintConfig
package/nuxt.config.ts CHANGED
@@ -12,6 +12,10 @@ export default defineNuxtConfig({
12
12
 
13
13
  extends: ['@sbc-connect/nuxt-base'],
14
14
 
15
+ alias: {
16
+ '#auth': resolve('./')
17
+ },
18
+
15
19
  css: [
16
20
  resolve('./app/assets/css/tw-auth.css')
17
21
  ]
package/package.json CHANGED
@@ -1,30 +1,24 @@
1
1
  {
2
2
  "name": "@sbc-connect/nuxt-auth",
3
3
  "type": "module",
4
- "version": "0.1.0",
4
+ "version": "0.1.2",
5
5
  "repository": "github:bcgov/connect-nuxt",
6
6
  "main": "./nuxt.config.ts",
7
7
  "devDependencies": {
8
8
  "@axe-core/playwright": "^4.10.2",
9
- "@faker-js/faker": "^9.8.0",
10
- "@nuxt/test-utils": "^3.19.1",
11
9
  "@nuxtjs/i18n": "^9.5.5",
12
- "@playwright/test": "^1.52.0",
13
- "@testing-library/vue": "^8.1.0",
14
10
  "@vitest/coverage-v8": "^3.2.3",
15
- "@vue/test-utils": "^2.4.6",
16
- "happy-dom": "^17.6.3",
11
+ "dotenv": "^17.2.0",
17
12
  "nuxt": "4.0.0",
18
- "otpauth": "^9.4.0",
19
13
  "typescript": "^5.8.3",
20
- "vitest": "^3.2.3",
21
14
  "vue": "latest",
22
- "dotenv": "^17.2.0",
23
- "@sbc-connect/vitest-config": "0.0.1",
24
- "@sbc-connect/playwright-config": "0.0.1"
15
+ "vue-tsc": "^3.0.2",
16
+ "@sbc-connect/eslint-config": "0.0.3",
17
+ "@sbc-connect/playwright-config": "0.0.3",
18
+ "@sbc-connect/vitest-config": "0.0.3"
25
19
  },
26
20
  "dependencies": {
27
- "@sbc-connect/nuxt-base": "0.1.0"
21
+ "@sbc-connect/nuxt-base": "0.1.2"
28
22
  },
29
23
  "scripts": {
30
24
  "preinstall": "npx only-allow pnpm",
@@ -37,6 +31,7 @@
37
31
  "lint:fix": "eslint --fix .",
38
32
  "test": "pnpm run test:unit; pnpm run test:e2e",
39
33
  "test:unit": "vitest run",
40
- "test:e2e": "npx playwright test"
34
+ "test:e2e": "npx playwright test",
35
+ "typecheck": "npx nuxt typecheck"
41
36
  }
42
37
  }
@@ -1,8 +0,0 @@
1
- <script setup lang="ts">
2
- </script>
3
-
4
- <template>
5
- <div class="bg-green-600">
6
- New Item Accounts Layer
7
- </div>
8
- </template>
@@ -1,8 +0,0 @@
1
- <script setup lang="ts">
2
- </script>
3
-
4
- <template>
5
- <div class="bg-red-800/50">
6
- New Item Accounts Layer
7
- </div>
8
- </template>