@knapsack/test-ava 4.71.16--canary.5224.facfa79.0 → 4.71.16--canary.5234.673513c.0

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,28 @@
1
+ # v4.71.13 (Wed Dec 04 2024)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - Bump version to: v4.71.12 \[skip ci\] ([@KnapsackBot](https://github.com/KnapsackBot))
6
+ - Update CHANGELOG.md \[skip ci\] ([@KnapsackBot](https://github.com/KnapsackBot))
7
+ - Bump version to: v4.71.11 \[skip ci\] ([@KnapsackBot](https://github.com/KnapsackBot))
8
+ - Merge branch 'latest' into feature/ksp-5777-gsk-sso-issues ([@illepic](https://github.com/illepic))
9
+
10
+ #### 🏠 Internal
11
+
12
+ - adds evt handlers for design src logs [#5194](https://github.com/knapsack-labs/app-monorepo/pull/5194) ([@mabry1985](https://github.com/mabry1985))
13
+ - setup login w popup [#5209](https://github.com/knapsack-labs/app-monorepo/pull/5209) ([@GormanDesign](https://github.com/GormanDesign) [@mabry1985](https://github.com/mabry1985) [@EvanLovely](https://github.com/EvanLovely) [@KnapsackBot](https://github.com/KnapsackBot) [@illepic](https://github.com/illepic))
14
+ - migrate to new Figma oAuth endpoints and configuration [#5206](https://github.com/knapsack-labs/app-monorepo/pull/5206) ([@mabry1985](https://github.com/mabry1985))
15
+
16
+ #### Authors: 5
17
+
18
+ - Christopher Bloom ([@illepic](https://github.com/illepic))
19
+ - Evan Lovely ([@EvanLovely](https://github.com/EvanLovely))
20
+ - Josh Mabry ([@mabry1985](https://github.com/mabry1985))
21
+ - KnapsackBot ([@KnapsackBot](https://github.com/KnapsackBot))
22
+ - Matt Gorman ([@GormanDesign](https://github.com/GormanDesign))
23
+
24
+ ---
25
+
1
26
  # v4.71.12 (Thu Nov 21 2024)
2
27
 
3
28
  #### 🐛 Bug Fix
package/ava.config.cjs CHANGED
@@ -1,10 +1,15 @@
1
1
  const { join } = require('path');
2
- const base = require('./base.cjs');
2
+
3
+ // all CI systems have this env var set
4
+ const isCi = !!process.env.CI;
3
5
 
4
6
  module.exports = {
5
- ...base,
6
7
  files: ['tests/**/*.test.*', 'src/**/*.test.*', '!dist', '!node_modules'],
7
8
  extensions: ['ts', 'cjs', 'mjs', 'js'],
8
9
  // 'dotenv/config' here laods .env files if found within project
9
10
  require: [join(__dirname, './prep.js'), require.resolve('dotenv/config')],
11
+ failWithoutAssertions: true,
12
+ timeout: '30s',
13
+ // can result in timeout errors using some task runners, like turborepo
14
+ workerThreads: !isCi,
10
15
  };
@@ -1,7 +1,4 @@
1
- const base = require('./base.cjs');
2
-
3
1
  module.exports = {
4
- ...base,
5
2
  files: ['tests/**/*.test.*', 'src/**/*.test.*', '!dist', '!node_modules'],
6
3
  require: [require.resolve('dotenv/config')],
7
4
  typescript: {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@knapsack/test-ava",
3
3
  "description": "",
4
- "version": "4.71.16--canary.5224.facfa79.0",
4
+ "version": "4.71.16--canary.5234.673513c.0",
5
5
  "bin": "./bin.js",
6
6
  "main": "ava.config.cjs",
7
7
  "exports": {
@@ -29,13 +29,13 @@
29
29
  "@babel/preset-env": "^7.26.0",
30
30
  "@babel/preset-typescript": "^7.26.0",
31
31
  "@babel/register": "^7.25.9",
32
- "@knapsack/creator-utils": "4.71.16--canary.5224.facfa79.0",
32
+ "@knapsack/creator-utils": "4.71.16--canary.5234.673513c.0",
33
33
  "ava": "^6.2.0",
34
34
  "dotenv": "^16.4.5"
35
35
  },
36
36
  "devDependencies": {
37
- "@knapsack/eslint-config-starter": "4.71.16--canary.5224.facfa79.0",
38
- "@knapsack/typescript-config-starter": "4.71.16--canary.5224.facfa79.0",
37
+ "@knapsack/eslint-config-starter": "4.71.16--canary.5234.673513c.0",
38
+ "@knapsack/typescript-config-starter": "4.71.16--canary.5234.673513c.0",
39
39
  "eslint": "^8.57.0",
40
40
  "typescript": "^5.6.3"
41
41
  },
@@ -48,5 +48,5 @@
48
48
  "directory": "tools/test-ava",
49
49
  "type": "git"
50
50
  },
51
- "gitHead": "facfa79a2b2c318a8ce8013dacc75b5ed1e77297"
51
+ "gitHead": "673513cad700f337a84a6a153285234971eb8f55"
52
52
  }
package/base.cjs DELETED
@@ -1,9 +0,0 @@
1
- // all CI systems have this env var set
2
- const isCi = !!process.env.CI;
3
-
4
- module.exports = {
5
- failWithoutAssertions: true,
6
- timeout: '30s',
7
- // can result in timeout errors using some task runners, like turborepo
8
- workerThreads: !isCi,
9
- };