-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #240 from dshanske/dec22fixes
Dev Dependencies Fixes
- Loading branch information
Showing
5 changed files
with
90 additions
and
80 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 |
---|---|---|
@@ -1,63 +1,42 @@ | ||
module.exports = function (grunt) { | ||
// Project configuration. | ||
grunt.initConfig({ | ||
checktextdomain: { | ||
options:{ | ||
text_domain: 'indieauth', | ||
keywords: [ | ||
'__:1,2d', | ||
'_e:1,2d', | ||
'_x:1,2c,3d', | ||
'esc_html__:1,2d', | ||
'esc_html_e:1,2d', | ||
'esc_html_x:1,2c,3d', | ||
'esc_attr__:1,2d', | ||
'esc_attr_e:1,2d', | ||
'esc_attr_x:1,2c,3d', | ||
'_ex:1,2c,3d', | ||
'_n:1,2,4d', | ||
'_nx:1,2,4c,5d', | ||
'_n_noop:1,2,3d', | ||
'_nx_noop:1,2,3c,4d' | ||
] | ||
}, | ||
files: { | ||
src: [ | ||
'**/*.php', // Include all files | ||
'includes/*.php', // Include includes | ||
'!node_modules/**', // Exclude node_modules/ | ||
'!tests/**', // Exclude tests/ | ||
'!vendor/**', // Exclude vendor/ | ||
'!static/**', // Exclude static resources | ||
], | ||
expand: true | ||
} | ||
}, | ||
// Project configuration. | ||
grunt.initConfig( | ||
{ | ||
files: { | ||
src: [ | ||
'**/*.php', // Include all files | ||
'includes/*.php', // Include includes | ||
'!node_modules/**', // Exclude node_modules/ | ||
'!tests/**', // Exclude tests/ | ||
'!vendor/**', // Exclude vendor/ | ||
'!static/**', // Exclude static resources | ||
], | ||
expand: true | ||
}, | ||
wp_readme_to_markdown: { | ||
target: { | ||
files: { | ||
'readme.md': 'readme.txt' | ||
} | ||
} | ||
}, | ||
makepot: { | ||
target: { | ||
options: { | ||
mainFile: 'indieauth.php', | ||
domainPath: '/languages', | ||
exclude: ['build/.*'], | ||
potFilename: 'indieauth.pot', | ||
type: 'wp-plugin', | ||
updateTimestamp: true | ||
} | ||
} | ||
} | ||
} | ||
); | ||
|
||
wp_readme_to_markdown: { | ||
target: { | ||
files: { | ||
'readme.md': 'readme.txt' | ||
} | ||
} | ||
}, | ||
makepot: { | ||
target: { | ||
options: { | ||
mainFile: 'indieauth.php', | ||
domainPath: '/languages', | ||
exclude: ['build/.*'], | ||
potFilename: 'indieauth.pot', | ||
type: 'wp-plugin', | ||
updateTimestamp: true | ||
} | ||
} | ||
} | ||
}); | ||
|
||
grunt.loadNpmTasks('grunt-wp-readme-to-markdown'); | ||
grunt.loadNpmTasks('grunt-wp-i18n'); | ||
grunt.loadNpmTasks('grunt-checktextdomain'); | ||
// Default task(s). | ||
grunt.registerTask('default', ['wp_readme_to_markdown', 'makepot', 'checktextdomain']); | ||
grunt.loadNpmTasks( 'grunt-wp-readme-to-markdown' ); | ||
grunt.loadNpmTasks( 'grunt-wp-i18n' ); | ||
// Default task(s). | ||
grunt.registerTask( 'default', ['wp_readme_to_markdown','makepot'] ); | ||
}; |
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