-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CHANGELOG and built release workflow
- Loading branch information
Showing
18 changed files
with
97 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: Built Release | ||
|
||
on: | ||
push: | ||
branches: | ||
- develop | ||
- main | ||
- production | ||
|
||
jobs: | ||
built-release: | ||
uses: alleyinteractive/.github/.github/workflows/built-release.yml@main | ||
with: | ||
node: 16 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"name": "@alleyinteractive/wp-asset-manager", | ||
"version": "1.4.0", | ||
"description": "Asset Manager is a toolkit for managing front-end assets and more tightly controlling where, when, and how they're loaded.", | ||
"scripts": { | ||
"build": "echo 'No build step defined'", | ||
"release": "npx @alleyinteractive/create-release@latest" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/alleyinteractive/wp-asset-manager.git" | ||
}, | ||
"author": "", | ||
"license": "GPL-2.0+", | ||
"bugs": { | ||
"url": "https://github.com/alleyinteractive/wp-asset-manager/issues" | ||
}, | ||
"homepage": "https://github.com/alleyinteractive/wp-asset-manager#readme" | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?php | ||
/** | ||
* Asset Manager plugin file | ||
* | ||
* @package AssetManager | ||
*/ | ||
|
||
/* | ||
Plugin Name: Asset Manager | ||
Plugin URI: https://github.com/alleyinteractive/wp-asset-manager | ||
Description: Add more robust functionality to enqueuing static assets | ||
Author: Alley Interactive | ||
Version: 1.4.0 | ||
License: GPLv2 or later | ||
Author URI: https://alley.com | ||
*/ | ||
|
||
// Require the main plugin file left as the original name for backwards compatibility. | ||
require_once __DIR__ . '/asset-manager.php'; |