@ovh-ux/manager-core-sso 0.1.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/package.json +22 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,16 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
+
6
+ # [0.1.0](https://github.com/ovh/manager/compare/@ovh-ux/manager-core-sso@0.0.0...@ovh-ux/manager-core-sso@0.1.0) (2023-06-12)
7
+
8
+
9
+ ### Features
10
+
11
+ * **generator:** add generator vitejs react v1 ([#9186](https://github.com/ovh/manager/issues/9186)) ([c911ee6](https://github.com/ovh/manager/commit/c911ee6168e2803e2022dc0e275f242953ad8255))
12
+
13
+
14
+ ### BREAKING CHANGES
15
+
16
+ * **generator:** rename useShellClient into initShellClient
package/package.json ADDED
@@ -0,0 +1,22 @@
1
+ {
2
+ "name": "@ovh-ux/manager-core-sso",
3
+ "version": "0.1.0",
4
+ "description": "",
5
+ "license": "BSD-3-Clause",
6
+ "author": "OVH SAS",
7
+ "sideEffects": false,
8
+ "main": "./dist/index.js",
9
+ "module": "./dist/index.js",
10
+ "types": "./dist/types/index.d.ts",
11
+ "files": [
12
+ "dist"
13
+ ],
14
+ "scripts": {
15
+ "build": "tsc",
16
+ "dev": "tsc",
17
+ "start:watch": "tsc -w"
18
+ },
19
+ "devDependencies": {
20
+ "typescript": "^4.3.2"
21
+ }
22
+ }