woocommerce/plugins/woocommerce-admin
Allen Snook 677c205ad2 Remove interface for this PR (actions will be hooked up later);
persist actions given during creation through to the db
2018-09-27 09:28:15 -07:00
..
bin Merge pull request woocommerce/woocommerce-admin#462 from woocommerce/fix/440 2018-09-27 12:31:36 -03:00
client Update chart interval select alignment 2018-09-26 15:15:16 -07:00
docs Documentation: Move topic READMEs into docs for discoverability (https://github.com/woocommerce/woocommerce-admin/pull/469) 2018-09-24 11:22:14 -04:00
images Add loading indicators, error state, and EmptyContent to the revenue report. (#347, woocommerce/woocommerce-admin#348) 2018-09-05 12:45:49 -04:00
includes Remove interface for this PR (actions will be hooked up later); 2018-09-27 09:28:15 -07:00
languages Update woo-dash naming to new wc-admin name (https://github.com/woocommerce/woocommerce-admin/pull/183) 2018-07-10 08:48:06 -04:00
lib Add visual component docs from markdown examples (https://github.com/woocommerce/woocommerce-admin/pull/470) 2018-09-24 11:36:35 -04:00
tests Added remaining test files. 2018-09-24 19:46:37 +02:00
.babelrc init for legends PR 2018-07-25 17:04:03 +02:00
.browserslistrc Add CSS autoprefixer (https://github.com/woocommerce/woocommerce-admin/pull/244) 2018-07-30 10:05:22 -04:00
.distignore Initial commit of plugin scaffold 2018-04-17 17:04:17 -04:00
.editorconfig Initial commit of plugin scaffold 2018-04-17 17:04:17 -04:00
.eslintignore Docs Project: Add documentation parser + inline documentation (https://github.com/woocommerce/woocommerce-admin/pull/336) 2018-08-31 13:27:21 -04:00
.eslintrc Add CSS naming conventions following Gutenberg’s standards (https://github.com/woocommerce/woocommerce-admin/pull/99) 2018-06-01 10:35:18 -04:00
.gitignore Added /vendor/ to gitignore. 2018-09-21 15:34:26 +02:00
.travis.yml Updated the before_script instructions to correctly install node and print out version. 2018-09-24 18:50:00 +02:00
Gruntfile.js Build: Update i18n generation to combine JS + PHP translations (https://github.com/woocommerce/woocommerce-admin/pull/481) 2018-09-26 10:23:55 -04:00
README.md Build: Update i18n generation to combine JS + PHP translations (https://github.com/woocommerce/woocommerce-admin/pull/481) 2018-09-26 10:23:55 -04:00
composer.json Travis test 3. 2018-09-21 15:32:42 +02:00
composer.lock Travis test 3. 2018-09-21 15:32:42 +02:00
package-lock.json Build: Update i18n generation to combine JS + PHP translations (https://github.com/woocommerce/woocommerce-admin/pull/481) 2018-09-26 10:23:55 -04:00
package.json Build: Update i18n generation to combine JS + PHP translations (https://github.com/woocommerce/woocommerce-admin/pull/481) 2018-09-26 10:23:55 -04:00
phpcs.xml.dist Updated language domain. 2018-09-24 17:46:41 +02:00
phpunit.xml.dist Initial setup for unit tests. 2018-09-20 16:20:04 +02:00
postcss.config.js IE11: fix CSS grid in Summary (https://github.com/woocommerce/woocommerce-admin/pull/353) 2018-09-06 17:11:34 +02:00
wc-admin.php PHPCS fixes. 2018-09-24 17:24:08 +02:00
webpack.config.js Build: Update i18n generation to combine JS + PHP translations (https://github.com/woocommerce/woocommerce-admin/pull/481) 2018-09-26 10:23:55 -04:00

README.md

WooCommerce Admin

This is a feature plugin for a modern, javascript-driven WooCommerce Admin experience.


⚠️ This project is in active development, and is not ready for general use. You can follow the features in development by looking at the project's issues. We do not recommend running this on production sites.


Prerequisites

Gutenberg and WooCommerce should be installed prior to activating the WooCommerce Admin feature plugin.

For better debugging, it's also recommended you add define( 'SCRIPT_DEBUG', true ); to your wp-config. This will load the unminified version of all libraries, and specifically the development build of React.

Development

After cloning the repo, install dependencies with npm install. Now you can build the files using one of these commands:

  • npm run build : Build a production version
  • npm start : Build a development version, watch files for changes

There are also some helper scripts:

  • npm run lint : Run eslint over the javascript files
  • npm run i18n : A multi-step process, used to create a pot file from both the JS and PHP gettext calls. First it runs i18n:js, which creates a temporary .pot file from the JS files. Next it runs i18n:php, which converts that .pot file to a PHP file. Lastly, it runs i18n:pot, which creates the final .pot file from all the PHP files in the plugin (including the generated one with the JS strings).