@forge/bundler 6.1.7-next.2 → 6.1.7-next.3-experimental-3ed5db1

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,35 @@
1
1
  # @forge/bundler
2
2
 
3
+ ## 6.1.7-next.3-experimental-3ed5db1
4
+
5
+ ### Patch Changes
6
+
7
+ - 895d478: Updates Agent MD file with appropriate instructions
8
+ - 5f384d1: Renaming csuik to uikit and removing jira-sprint-action csuik template
9
+ - Updated dependencies [895d478]
10
+ - Updated dependencies [eeaa160]
11
+ - Updated dependencies [c343935]
12
+ - Updated dependencies [a85376a]
13
+ - Updated dependencies [5f384d1]
14
+ - Updated dependencies [fa952eb]
15
+ - Updated dependencies [b15478b]
16
+ - @forge/cli-shared@8.7.0-next.3-experimental-3ed5db1
17
+ - @forge/manifest@10.6.0-next.2-experimental-3ed5db1
18
+ - @forge/lint@5.11.3-next.3-experimental-3ed5db1
19
+
20
+ ## 6.1.7-next.3
21
+
22
+ ### Patch Changes
23
+
24
+ - 5f384d1: Renaming csuik to uikit and removing jira-sprint-action csuik template
25
+ - Updated dependencies [eeaa160]
26
+ - Updated dependencies [a85376a]
27
+ - Updated dependencies [5f384d1]
28
+ - Updated dependencies [fa952eb]
29
+ - @forge/manifest@10.6.0-next.2
30
+ - @forge/cli-shared@8.7.0-next.3
31
+ - @forge/lint@5.11.3-next.3
32
+
3
33
  ## 6.1.7-next.2
4
34
 
5
35
  ### Patch Changes
package/out/lint.js CHANGED
@@ -11,15 +11,15 @@ async function runLinter(statsigService, logger = { info: console.log }, fileSys
11
11
  const exclude = [...(await (0, cli_shared_1.listGitIgnoreFiles)(fileSystemReader)), '.git', common_1.NODE_MODULES_DIR];
12
12
  const configFile = new cli_shared_1.ConfigFile(fileSystemReader, fileSystemWriter);
13
13
  const manifest = await configFile.readConfig();
14
- const csuikResources = await configFile.getResources(['nativeUI']);
15
- const csuikDirectories = csuikResources.map((resource) => path_1.default.dirname(resource.path));
16
- const [filesToLint, ...csuikFilesByDirectory] = await Promise.all([
14
+ const UIKitResources = await configFile.getResources(['nativeUI']);
15
+ const UIKitDirectories = UIKitResources.map((resource) => path_1.default.dirname(resource.path));
16
+ const [filesToLint, ...UIKitFilesByDirectory] = await Promise.all([
17
17
  fileSystemReader.recursiveReadDir('./src', exclude),
18
- ...csuikDirectories.map((directory) => fileSystemReader.recursiveReadDir(directory, exclude))
18
+ ...UIKitDirectories.map((directory) => fileSystemReader.recursiveReadDir(directory, exclude))
19
19
  ]);
20
- const csuikFilesToLint = csuikFilesByDirectory.reduce((allFiles, directoryFiles) => allFiles.concat(directoryFiles), []);
20
+ const UIKitFilesToLint = UIKitFilesByDirectory.reduce((allFiles, directoryFiles) => allFiles.concat(directoryFiles), []);
21
21
  try {
22
- const lintResults = await (0, lint_1.lint)([...filesToLint, ...csuikFilesToLint], manifest, 'development', logger, statsigService);
22
+ const lintResults = await (0, lint_1.lint)([...filesToLint, ...UIKitFilesToLint], manifest, 'development', logger, statsigService);
23
23
  if (lintResults.some((result) => result.size())) {
24
24
  logger.info('');
25
25
  (0, lint_1.reportLintResults)(logger, lintResults);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forge/bundler",
3
- "version": "6.1.7-next.2",
3
+ "version": "6.1.7-next.3-experimental-3ed5db1",
4
4
  "description": "Default bundler for Forge apps",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "author": "Atlassian",
@@ -21,10 +21,10 @@
21
21
  "@babel/plugin-transform-react-jsx": "^7.23.4",
22
22
  "@babel/traverse": "^7.24.0",
23
23
  "@babel/types": "^7.24.0",
24
- "@forge/cli-shared": "8.7.0-next.2",
24
+ "@forge/cli-shared": "8.7.0-next.3-experimental-3ed5db1",
25
25
  "@forge/i18n": "0.0.7",
26
- "@forge/lint": "5.11.3-next.2",
27
- "@forge/manifest": "10.5.1-next.1",
26
+ "@forge/lint": "5.11.3-next.3-experimental-3ed5db1",
27
+ "@forge/manifest": "10.6.0-next.2-experimental-3ed5db1",
28
28
  "babel-loader": "^8.3.0",
29
29
  "cheerio": "^1.1.0",
30
30
  "cross-spawn": "^7.0.6",