fasterdev 0.1.0 → 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/dist/cli.js +1 -1
  2. package/package.json +6 -2
package/dist/cli.js CHANGED
@@ -150,7 +150,7 @@ function getConfig() {
150
150
  apiUrl,
151
151
  authToken,
152
152
  defaultTools: store.get("defaultTools"),
153
- analytics: analyticsEnv ? false : store.get("analytics", DEFAULT_CONFIG.analytics)
153
+ analytics: analyticsEnv ? false : store.get("analytics", DEFAULT_CONFIG.analytics ?? true)
154
154
  };
155
155
  }
156
156
  function getAuthToken() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fasterdev",
3
- "version": "0.1.0",
3
+ "version": "0.1.7",
4
4
  "description": "Install AI coding assistant skills and rules from faster.dev",
5
5
  "type": "module",
6
6
  "bin": {
@@ -46,5 +46,9 @@
46
46
  "rules",
47
47
  "coding-assistant"
48
48
  ],
49
- "license": "MIT"
49
+ "license": "MIT",
50
+ "repository": {
51
+ "type": "git",
52
+ "url": "https://github.com/aarondfrancis/fasterdev-cli"
53
+ }
50
54
  }