isaacscript 3.16.1-dev.0 → 3.16.1-dev.1
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/dist/constants.js +1 -1
- package/package.json +1 -1
package/dist/constants.js
CHANGED
|
@@ -30,7 +30,7 @@ export const TEMPLATES_DYNAMIC_DIR = path.join(TEMPLATES_DIR, "dynamic");
|
|
|
30
30
|
export const CI_YML = "ci.yml";
|
|
31
31
|
export const CI_YML_TEMPLATE_PATH = path.join(TEMPLATES_DYNAMIC_DIR, ".github", "workflows", CI_YML);
|
|
32
32
|
export const ACTION_YML = "action.yml";
|
|
33
|
-
export const ACTION_YML_TEMPLATE_PATH = path.join(TEMPLATES_DYNAMIC_DIR, ".github", "workflows", ACTION_YML);
|
|
33
|
+
export const ACTION_YML_TEMPLATE_PATH = path.join(TEMPLATES_DYNAMIC_DIR, ".github", "workflows", "setup", ACTION_YML);
|
|
34
34
|
export const YARNRC_YML = ".yarnrc.yml";
|
|
35
35
|
export const YARNRC_TEMPLATE_PATH = path.join(TEMPLATES_DYNAMIC_DIR, YARNRC_YML);
|
|
36
36
|
const GITIGNORE = "_gitignore"; // Not named ".gitignore" to prevent npm from deleting it.
|