@qlik/oxfmt-config 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 CHANGED
@@ -1,5 +1,17 @@
1
1
  # @qlik/oxfmt-config
2
2
 
3
+ ## 0.1.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 78a97aa: chore: update npm dependencies
8
+
9
+ ## 0.1.1
10
+
11
+ ### Patch Changes
12
+
13
+ - 473149f: add type file for oxfmt config
14
+
3
15
  ## 0.1.0
4
16
 
5
17
  ### Minor Changes
@@ -0,0 +1,4 @@
1
+ import type { defineConfig } from "oxfmt";
2
+
3
+ declare const config: ReturnType<typeof defineConfig>;
4
+ export default config;
package/package.json CHANGED
@@ -1,17 +1,18 @@
1
1
  {
2
2
  "name": "@qlik/oxfmt-config",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Qlik's shared oxfmt config",
5
5
  "license": "ISC",
6
6
  "repository": "git@github.com:qlik-oss/dev-tools-js.git",
7
7
  "type": "module",
8
8
  "main": "./oxfmt.config.js",
9
+ "types": "./oxfmt.config.d.ts",
9
10
  "publishConfig": {
10
11
  "access": "public",
11
12
  "registry": "https://registry.npmjs.org/"
12
13
  },
13
14
  "dependencies": {
14
- "oxfmt": "^0.38.0"
15
+ "oxfmt": "^0.40.0"
15
16
  },
16
17
  "peerDependencies": {
17
18
  "oxfmt": ">=0.38.0"