2018-04-17 21:03:14 +00:00
|
|
|
{
|
2020-02-14 02:23:21 +00:00
|
|
|
"name": "@woocommerce/admin-library",
|
2020-11-18 19:36:45 +00:00
|
|
|
"version": "1.8.0-dev",
|
2020-02-14 02:23:21 +00:00
|
|
|
"homepage": "https://woocommerce.github.io/woocommerce-admin/",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com:woocommerce/woocommerce-admin.git"
|
|
|
|
},
|
|
|
|
"license": "GPL-3.0-or-later",
|
|
|
|
"author": "Automattic",
|
|
|
|
"files": [
|
|
|
|
"dist/**/*.css",
|
|
|
|
"dist/**/*.js",
|
|
|
|
"dist/feature-config-core.php",
|
|
|
|
"includes/class-wc-admin-loader.php",
|
|
|
|
"includes/features/**/*.php",
|
|
|
|
"languages/**/*.json",
|
|
|
|
"license.txt"
|
|
|
|
],
|
|
|
|
"scripts": {
|
2020-08-04 01:13:48 +00:00
|
|
|
"prebuild": "npm run -s install-if-deps-outdated",
|
2020-02-14 02:23:21 +00:00
|
|
|
"build": "npm run build:feature-config && npm run build:packages && cross-env NODE_ENV=production webpack",
|
2020-04-29 18:01:27 +00:00
|
|
|
"analyze": "cross-env NODE_ENV=production ANALYZE=true webpack",
|
2020-02-14 02:23:21 +00:00
|
|
|
"postbuild": "npm run -s i18n:pot && npm run -s i18n:build",
|
|
|
|
"build:feature-config": "php bin/generate-feature-config.php",
|
|
|
|
"build:packages": "node ./bin/packages/build.js",
|
|
|
|
"build:release": "./bin/build-plugin-zip.sh",
|
|
|
|
"clean": "rimraf ./dist ./packages/*/build ./packages/*/build-module ./packages/*/build-style",
|
|
|
|
"predev": "npm run -s install-if-deps-outdated && php ./bin/update-version.php",
|
|
|
|
"dev": "cross-env WC_ADMIN_PHASE=development npm run build:feature-config && cross-env WC_ADMIN_PHASE=development npm run build:packages && cross-env WC_ADMIN_PHASE=development webpack",
|
2020-09-04 02:31:09 +00:00
|
|
|
"docker:up": "npm explore @woocommerce/e2e-environment -- npm run docker:up",
|
|
|
|
"docker:down": "npm explore @woocommerce/e2e-environment -- npm run docker:down",
|
2020-02-14 02:23:21 +00:00
|
|
|
"docs": "node ./bin/generate-docs",
|
|
|
|
"i18n": "npm run -s i18n:js && npm run -s i18n:check && npm run -s i18n:pot && npm run -s i18n:build",
|
|
|
|
"i18n:build": "php bin/combine-pot-files.php languages/woocommerce-admin.po languages/woocommerce-admin.pot",
|
|
|
|
"i18n:check": "grunt checktextdomain",
|
|
|
|
"i18n:js": "npm run clean && cross-env NODE_ENV=production babel client packages -o /dev/null",
|
|
|
|
"i18n:json": "./bin/make-i18n-json.sh",
|
|
|
|
"i18n:pot": "grunt makepot",
|
|
|
|
"install-if-deps-outdated": "node bin/install-if-deps-outdated.js",
|
|
|
|
"install-if-no-packages": "node bin/install-if-no-packages.js",
|
|
|
|
"jest:update": "jest -u --config=tests/js/jest.config.json",
|
|
|
|
"lint": "npm run lint:js && npm run lint:css",
|
|
|
|
"lint:css": "stylelint '**/*.scss'",
|
|
|
|
"lint:css-fix": "stylelint '**/*.scss' --fix",
|
2020-07-28 02:32:58 +00:00
|
|
|
"lint:js": "wp-scripts lint-js ./packages ./client",
|
|
|
|
"lint:js:packages": "wp-scripts lint-js ./packages",
|
|
|
|
"lint:js:client": "wp-scripts lint-js ./client",
|
|
|
|
"lint:js-fix": "npm run lint:js -- --fix",
|
2020-02-14 02:23:21 +00:00
|
|
|
"lint:php": "./vendor/bin/phpcs --standard=phpcs.xml.dist $(git ls-files | grep .php$)",
|
|
|
|
"lint:php-fix": "./vendor/bin/phpcbf --standard=phpcs.xml.dist $(git ls-files | grep .php$)",
|
2020-07-28 02:32:58 +00:00
|
|
|
"reformat-files": "wp-scripts format-js -- --ignore-path .eslintignore",
|
2020-02-14 02:23:21 +00:00
|
|
|
"prepack": "npm install && npm run lint && npm run test && cross-env WC_ADMIN_PHASE=core npm run build",
|
|
|
|
"publish-packages:check": "npm run build:packages && lerna updated",
|
|
|
|
"publish-packages:dev": "npm run build:packages && lerna publish from-package --npm-tag next",
|
|
|
|
"publish-packages:prod": "npm run build:packages && lerna publish from-package",
|
2020-08-04 01:13:48 +00:00
|
|
|
"prestart": "npm run -s install-if-deps-outdated",
|
2020-02-14 02:23:21 +00:00
|
|
|
"start": "cross-env WC_ADMIN_PHASE=development npm run build:packages && cross-env WC_ADMIN_PHASE=development npm run build:feature-config && concurrently \"cross-env WC_ADMIN_PHASE=development webpack --watch\" \"node ./bin/packages/watch.js\"",
|
|
|
|
"pretest": "npm run -s install-if-no-packages",
|
2020-09-04 02:31:09 +00:00
|
|
|
"test:e2e": "npm explore @woocommerce/e2e-environment -- npm run test:e2e",
|
|
|
|
"test:e2e-dev": "npm explore @woocommerce/e2e-environment -- npm run test:e2e-dev",
|
2020-08-12 23:29:48 +00:00
|
|
|
"test": "./node_modules/jest-24.9.0/bin/jest.js --config tests/js/jest.config.json",
|
2020-10-02 04:38:13 +00:00
|
|
|
"test-staged": "./node_modules/jest-24.9.0/bin/jest.js --bail --config tests/js/jest.config.json --findRelatedTests",
|
2020-02-14 02:23:21 +00:00
|
|
|
"test:help": "wp-scripts test-unit-js --help",
|
|
|
|
"test:update-snapshots": "jest --updateSnapshot --config tests/js/jest.config.json",
|
|
|
|
"test:watch": "npm run test -- --watch",
|
2020-10-12 22:00:54 +00:00
|
|
|
"test:zip": "npm run clean && composer i && ./bin/build-test-zip.sh",
|
2020-02-14 02:23:21 +00:00
|
|
|
"example": "webpack --config docs/examples/extensions/examples.config.js --watch",
|
|
|
|
"pre-release": "./bin/pre-release.sh",
|
2020-02-24 02:25:26 +00:00
|
|
|
"create-wc-extension": "node ./bin/starter-pack/starter-pack.js",
|
2020-10-15 01:55:55 +00:00
|
|
|
"storybook": "./bin/import-wp-css-storybook.sh && start-storybook -c ./storybook -p 6007 --ci",
|
2020-03-12 21:21:11 +00:00
|
|
|
"build-storybook": "build-storybook -c ./storybook",
|
2020-08-04 01:13:48 +00:00
|
|
|
"changelog": "node ./bin/changelog --changelogSrcType='ZENHUB_RELEASE'",
|
|
|
|
"bump-version": "npm run -s install-if-deps-outdated && php ./bin/update-version.php"
|
2020-03-12 21:21:11 +00:00
|
|
|
},
|
|
|
|
"changelog": {
|
|
|
|
"labelPrefix": "[Type]",
|
|
|
|
"skipLabel": "skip-changelog",
|
|
|
|
"defaultPrefix": "dev",
|
|
|
|
"repo": "woocommerce/woocommerce-admin"
|
2020-02-14 02:23:21 +00:00
|
|
|
},
|
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
|
|
|
"pre-commit": "lint-staged",
|
2020-10-02 04:38:13 +00:00
|
|
|
"pre-push": "node bin/pre-push-hook.js"
|
2020-02-14 02:23:21 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2020-10-22 04:12:58 +00:00
|
|
|
"@woocommerce/e2e-environment": "0.1.6",
|
2020-02-14 02:23:21 +00:00
|
|
|
"@wordpress/api-fetch": "2.2.8",
|
2020-10-08 23:10:32 +00:00
|
|
|
"@wordpress/base-styles": "3.1.0",
|
|
|
|
"@wordpress/components": "11.0.0",
|
2020-05-14 04:34:33 +00:00
|
|
|
"@wordpress/data": "4.16.1",
|
|
|
|
"@wordpress/data-controls": "1.10.1",
|
|
|
|
"@wordpress/date": "3.9.0",
|
|
|
|
"@wordpress/dom": "2.9.0",
|
|
|
|
"@wordpress/element": "2.13.1",
|
|
|
|
"@wordpress/hooks": "2.8.0",
|
|
|
|
"@wordpress/html-entities": "2.7.0",
|
|
|
|
"@wordpress/i18n": "3.11.0",
|
2020-05-20 13:34:49 +00:00
|
|
|
"@wordpress/icons": "2.0.0",
|
2020-05-14 04:34:33 +00:00
|
|
|
"@wordpress/keycodes": "2.11.0",
|
2020-02-14 02:23:21 +00:00
|
|
|
"@wordpress/notices": "1.12.0",
|
2020-10-14 20:59:53 +00:00
|
|
|
"@wordpress/plugins": "2.22.0",
|
2020-05-14 04:34:33 +00:00
|
|
|
"@wordpress/url": "2.13.0",
|
|
|
|
"@wordpress/viewport": "2.15.1",
|
2020-02-14 02:23:21 +00:00
|
|
|
"classnames": "2.2.6",
|
2020-11-24 19:48:14 +00:00
|
|
|
"core-js": "3.7.0",
|
2020-11-26 00:17:22 +00:00
|
|
|
"debug": "4.3.1",
|
2020-11-26 01:58:56 +00:00
|
|
|
"dompurify": "2.2.2",
|
2020-02-14 02:23:21 +00:00
|
|
|
"gridicons": "3.3.1",
|
|
|
|
"interpolate-components": "1.1.1",
|
|
|
|
"memoize-one": "5.1.1",
|
2020-08-13 03:40:43 +00:00
|
|
|
"qs": "6.9.4",
|
2020-02-14 02:23:21 +00:00
|
|
|
"react-click-outside": "3.0.1",
|
2020-05-12 22:45:17 +00:00
|
|
|
"react-dates": "17.2.0",
|
2020-02-14 02:23:21 +00:00
|
|
|
"react-router-dom": "5.1.2",
|
2020-03-24 00:46:41 +00:00
|
|
|
"react-transition-group": "4.3.0",
|
2020-02-14 02:23:21 +00:00
|
|
|
"react-visibility-sensor": "5.1.1",
|
|
|
|
"redux": "4.0.5"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-08-13 03:14:05 +00:00
|
|
|
"@automattic/color-studio": "2.3.1",
|
2020-07-08 04:09:54 +00:00
|
|
|
"@automattic/mini-css-extract-plugin-with-rtl": "0.8.0",
|
2020-11-25 00:30:44 +00:00
|
|
|
"@babel/cli": "7.12.8",
|
|
|
|
"@babel/core": "7.12.9",
|
2020-10-22 02:19:55 +00:00
|
|
|
"@babel/plugin-proposal-class-properties": "7.12.1",
|
|
|
|
"@babel/plugin-transform-async-to-generator": "7.12.1",
|
2020-11-25 00:30:44 +00:00
|
|
|
"@babel/plugin-transform-react-jsx": "7.12.7",
|
2020-11-05 00:50:38 +00:00
|
|
|
"@babel/runtime-corejs2": "7.12.5",
|
2020-11-04 00:26:51 +00:00
|
|
|
"@octokit/graphql": "4.5.7",
|
2020-10-15 01:55:55 +00:00
|
|
|
"@storybook/addon-a11y": "6.0.26",
|
|
|
|
"@storybook/addon-actions": "6.0.26",
|
2020-09-23 00:46:02 +00:00
|
|
|
"@storybook/addon-console": "1.2.2",
|
2020-10-15 01:55:55 +00:00
|
|
|
"@storybook/addon-docs": "6.0.26",
|
|
|
|
"@storybook/addon-knobs": "6.0.26",
|
|
|
|
"@storybook/addon-links": "6.0.26",
|
|
|
|
"@storybook/addon-storysource": "6.0.26",
|
|
|
|
"@storybook/addon-viewport": "6.0.26",
|
|
|
|
"@storybook/addons": "6.0.26",
|
|
|
|
"@storybook/react": "6.0.26",
|
2020-11-18 00:42:26 +00:00
|
|
|
"@testing-library/jest-dom": "5.11.6",
|
2020-11-25 00:35:34 +00:00
|
|
|
"@testing-library/react": "11.2.2",
|
2020-09-30 00:46:30 +00:00
|
|
|
"@testing-library/react-hooks": "3.4.2",
|
2020-12-02 00:36:05 +00:00
|
|
|
"@testing-library/user-event": "12.3.0",
|
2020-07-30 01:51:15 +00:00
|
|
|
"@woocommerce/components": "file:packages/components",
|
|
|
|
"@woocommerce/csv-export": "file:packages/csv-export",
|
2020-10-30 06:52:52 +00:00
|
|
|
"@woocommerce/customer-effort-score": "file:packages/customer-effort-score",
|
2020-07-30 01:51:15 +00:00
|
|
|
"@woocommerce/currency": "file:packages/currency",
|
|
|
|
"@woocommerce/data": "file:packages/data",
|
|
|
|
"@woocommerce/date": "file:packages/date",
|
2020-07-28 02:32:58 +00:00
|
|
|
"@woocommerce/eslint-plugin": "file:packages/eslint-plugin",
|
2020-07-30 01:51:15 +00:00
|
|
|
"@woocommerce/navigation": "file:packages/navigation",
|
2020-11-09 07:17:08 +00:00
|
|
|
"@woocommerce/notices": "file:packages/notices",
|
2020-07-30 01:51:15 +00:00
|
|
|
"@woocommerce/number": "file:packages/number",
|
2020-08-20 04:59:52 +00:00
|
|
|
"@woocommerce/tracks": "file:packages/tracks",
|
2020-02-14 02:23:21 +00:00
|
|
|
"@wordpress/babel-plugin-makepot": "2.1.3",
|
2020-08-23 21:35:46 +00:00
|
|
|
"@wordpress/babel-preset-default": "4.17.0",
|
2020-02-14 02:23:21 +00:00
|
|
|
"@wordpress/browserslist-config": "2.6.0",
|
|
|
|
"@wordpress/custom-templated-path-webpack-plugin": "1.6.0",
|
2020-09-04 02:31:09 +00:00
|
|
|
"@wordpress/e2e-test-utils": "4.6.0",
|
|
|
|
"@wordpress/eslint-plugin": "7.1.0",
|
|
|
|
"@wordpress/jest-preset-default": "5.5.0",
|
2020-07-17 00:11:42 +00:00
|
|
|
"@wordpress/postcss-plugins-preset": "1.3.0",
|
2020-02-14 02:23:21 +00:00
|
|
|
"@wordpress/postcss-themes": "1.0.5",
|
2020-08-13 03:53:47 +00:00
|
|
|
"@wordpress/prettier-config": "0.3.0",
|
2020-07-28 02:32:58 +00:00
|
|
|
"@wordpress/scripts": "12.0.0",
|
2020-09-16 01:35:27 +00:00
|
|
|
"ast-types": "0.14.2",
|
2020-08-13 03:28:04 +00:00
|
|
|
"autoprefixer": "9.8.6",
|
2020-02-14 02:23:21 +00:00
|
|
|
"babel-core": "7.0.0-bridge.0",
|
2020-11-11 02:34:17 +00:00
|
|
|
"babel-jest": "26.6.3",
|
2020-12-02 01:30:21 +00:00
|
|
|
"babel-loader": "8.2.2",
|
2020-02-14 02:23:21 +00:00
|
|
|
"babel-plugin-transform-class-properties": "6.24.1",
|
|
|
|
"babel-plugin-transform-es2015-template-literals": "6.22.0",
|
2020-06-10 21:59:13 +00:00
|
|
|
"chalk": "4.1.0",
|
2020-08-13 00:53:20 +00:00
|
|
|
"concurrently": "5.3.0",
|
2020-12-02 03:01:51 +00:00
|
|
|
"config": "3.3.3",
|
2020-02-14 02:23:21 +00:00
|
|
|
"copy-webpack-plugin": "5.1.1",
|
2020-03-10 19:37:42 +00:00
|
|
|
"cross-env": "7.0.2",
|
2020-06-18 11:46:20 +00:00
|
|
|
"css-loader": "3.6.0",
|
2020-11-25 01:38:49 +00:00
|
|
|
"docsify-cli": "4.4.2",
|
2020-02-14 02:23:21 +00:00
|
|
|
"fs-extra": "8.1.0",
|
2020-08-19 03:54:23 +00:00
|
|
|
"grunt": "1.3.0",
|
2020-02-14 02:23:21 +00:00
|
|
|
"grunt-checktextdomain": "1.0.1",
|
|
|
|
"grunt-wp-i18n": "1.0.3",
|
2020-09-09 02:41:46 +00:00
|
|
|
"husky": "4.3.0",
|
2020-08-13 03:53:47 +00:00
|
|
|
"jest-24.9.0": "npm:jest@24.9.0",
|
2020-06-10 21:38:59 +00:00
|
|
|
"jest-environment-jsdom-sixteen": "1.0.3",
|
2020-06-13 00:58:58 +00:00
|
|
|
"lerna": "3.22.1",
|
2020-11-25 02:50:22 +00:00
|
|
|
"lint-staged": "10.5.2",
|
2020-12-02 03:22:13 +00:00
|
|
|
"md5": "2.3.0",
|
2020-03-12 21:21:11 +00:00
|
|
|
"merge-config": "2.0.0",
|
2020-08-13 03:55:09 +00:00
|
|
|
"moment-timezone-data-webpack-plugin": "1.3.0",
|
2020-08-13 02:35:46 +00:00
|
|
|
"node-sass": "4.14.1",
|
2020-10-14 02:51:30 +00:00
|
|
|
"node-watch": "0.7.0",
|
2020-02-14 02:23:21 +00:00
|
|
|
"postcss-color-function": "4.1.0",
|
|
|
|
"postcss-loader": "3.0.0",
|
2020-07-28 02:32:58 +00:00
|
|
|
"prettier": "npm:wp-prettier@2.0.5",
|
2020-10-29 19:34:13 +00:00
|
|
|
"promptly": "3.1.0",
|
2020-02-14 02:23:21 +00:00
|
|
|
"prop-types": "15.7.2",
|
2020-04-27 13:35:25 +00:00
|
|
|
"raw-loader": "4.0.1",
|
2020-03-09 16:22:08 +00:00
|
|
|
"react-docgen": "5.3.0",
|
2020-02-14 02:23:21 +00:00
|
|
|
"readline-sync": "1.4.10",
|
2020-09-23 01:35:23 +00:00
|
|
|
"recast": "0.20.3",
|
2020-09-23 07:36:16 +00:00
|
|
|
"replace": "1.2.0",
|
2020-09-23 02:32:34 +00:00
|
|
|
"request-promise": "4.2.6",
|
2020-03-24 00:51:08 +00:00
|
|
|
"rimraf": "3.0.2",
|
2020-02-14 02:23:21 +00:00
|
|
|
"rtlcss": "2.5.0",
|
2020-03-24 01:15:45 +00:00
|
|
|
"sass-loader": "8.0.2",
|
2020-02-14 02:23:21 +00:00
|
|
|
"style-loader": "0.23.1",
|
|
|
|
"stylelint": "9.10.1",
|
|
|
|
"stylelint-config-wordpress": "13.1.0",
|
2020-05-12 22:45:17 +00:00
|
|
|
"terser-webpack-plugin": "2.3.5",
|
2020-02-14 02:23:21 +00:00
|
|
|
"url-loader": "1.1.2",
|
2020-04-27 13:41:16 +00:00
|
|
|
"webpack": "4.43.0",
|
2020-05-12 22:45:17 +00:00
|
|
|
"webpack-bundle-analyzer": "3.6.1",
|
2020-02-14 02:23:21 +00:00
|
|
|
"webpack-cli": "3.3.11",
|
|
|
|
"webpack-fix-style-only-entries": "0.4.0",
|
2020-03-12 21:21:11 +00:00
|
|
|
"webpack-rtl-plugin": "2.0.0",
|
|
|
|
"zenhub-api": "0.2.0"
|
2020-02-14 02:23:21 +00:00
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"node": ">=8.0.0",
|
Merge final `version/1.0` branch with `master` (https://github.com/woocommerce/woocommerce-admin/pull/3848)
* Try: Moving Customers to main Woo Menu (https://github.com/woocommerce/woocommerce-admin/pull/3632)
* Only add onboarding settings on wc-admin pages when task list should be shown. (https://github.com/woocommerce/woocommerce-admin/pull/3722)
* Use cron for unsnoozing admin notes (https://github.com/woocommerce/woocommerce-admin/pull/3662)
* Use wp-cron for admin note snoozing.
* Remove "unsnooze" scheduled action.
* Use correct version.
* Avoid using deprecated method for unscheduling actions.
* Onboarding: Fix toggle tracking events (https://github.com/woocommerce/woocommerce-admin/pull/3645)
* Fix errant wcadmin prefix on event name
* Track the onboarding toggle on the option in case enable_onboarding isn't used
* Move toggle actions to separate function
* Move onboarding actions
* Move onboarding filters
* Move help tab updates to add_toggle_actions
* Only run onboarding actions when enabled
* Onboarding: Add tracks events when profiler steps are completed (https://github.com/woocommerce/woocommerce-admin/pull/3726)
* Add tracks for store profiler step completion
* Record event when profiler is completed
* Ensure continue setup loads the onboarding profiler (https://github.com/woocommerce/woocommerce-admin/pull/3646)
* 'All that include' option removed when input field is empty (https://github.com/woocommerce/woocommerce-admin/pull/3700)
* 'All that include' option removed when input field is empty
Added a control to check that when the input field 'Search by customer name' is empty, the 'All that include' option is not appearing.
* Const name improved
The constant name hasValues was changed to optionsHaveValues (more descriptive)
* Fix select text alignment (https://github.com/woocommerce/woocommerce-admin/pull/3723)
* Stock panel indicator - cache and use lookup tables. (https://github.com/woocommerce/woocommerce-admin/pull/3729)
* Stock panel indicator - cache and use lookup tables.
* Revise query, clear transient on product update.
* Fix error, ht Josh.
* Checklist: Remove sideloaded images to reduce build size, take 2 (https://github.com/woocommerce/woocommerce-admin/pull/3731)
* Remove homepage template images.
* Use other-small on all industries, adjust text color.
* Remove background dim and opacity set to 0
* Fix/3631 (https://github.com/woocommerce/woocommerce-admin/pull/3730)
* Added CBD as an industry type
CBD was added as an industry type in API
* Industries options modified
Modified the industries options. Now we are able to choose if we will use an input or not in the option.
* API control changed for industries.
API control changed for industries. Now it accepts the data type we need.
* Added input in Industries list for the option "Other"
Added an input for the option "Other" in the industries list
* Added suggested changes in review comments.
* Added data preparation for recordEvent
* Changed variable to snake_case
The variable "industriesWithDetail" was changed to "industries_with_detail" (snake_case)
* Onboarding: Create homepage without redirect (https://github.com/woocommerce/woocommerce-admin/pull/3727)
* Add link to edit homepage instead of redirect
* Add busy state to homepage creation button
* Publish homepage on create via API
* Update homepage notice to show on first post update
* Update homepage creation notice per design
* Record event on customize homepage
* Set homepage to frontpage on creation
* Add deactivation note for feature plugin (https://github.com/woocommerce/woocommerce-admin/pull/3687)
* Add version deactivation note
* Add the note to deactivate if the version is older than the current WC version
* Deactivate wc admin feature plugin on action click
* Add notes version hooks
* change the Package class namespace to exclude from standalone autoloader
* add use statement for FeaturePlugin
* add note explaining namespace
* use wc-admin-deactivate-plugin note name
* Rename file and class to WC_Admin_Notes_Deactivate_Plugin
Co-authored-by: Ron Rennick <ron@ronandandrea.com>
Co-authored-by: Paul Sealock <psealock@gmail.com>
* Add Travis tests on GH for release branch (https://github.com/woocommerce/woocommerce-admin/pull/3751)
* Add Travis tests on GH for release branch
* fix linter errors
* ActivityPanels.php -> use public static functions
* Remove free text Search option when no query exists (https://github.com/woocommerce/woocommerce-admin/pull/3755)
* Revert changes in woocommerce/woocommerce-admin#3700
* Don't add free text search if no query exists
* Add tests for Search without query
* Add test for showing free text search option
* Fix image sideloading for store industries. (https://github.com/woocommerce/woocommerce-admin/pull/3743)
* Fix image sideloading for store industries.
Data format changed in https://github.com/woocommerce/woocommerce-admin/pull/3730
* Fix industry image sideload in cases where the count is less than requested.
* Be backwards compatible with the old industry data format.
* Added event props to identify stores with WCS and Jetpack installed (https://github.com/woocommerce/woocommerce-admin/pull/3750)
* Added event props to identify stores with WCS and Jetpack installed
Also, added Jeckpack connected status
* Improved variable name
* Simplified method
Simplified method. "intersection" check was removed
* Tests errors repeared
The method "clear_low_out_of_stock_count_transient" now is static.
* OBW: fix sideloading image test error (https://github.com/woocommerce/woocommerce-admin/pull/3762)
* Release 0.26.0 changes (https://github.com/woocommerce/woocommerce-admin/pull/3753)
* add deactivation hook to Package.php (https://github.com/woocommerce/woocommerce-admin/pull/3770)
* Add active version functions (https://github.com/woocommerce/woocommerce-admin/pull/3772)
* add active version functions to Package.php
Co-authored-by: Joshua T Flowers <joshuatf@gmail.com>
* 0.26.1 changes (https://github.com/woocommerce/woocommerce-admin/pull/3773)
* Customers Report: fix missing report param in search (https://github.com/woocommerce/woocommerce-admin/pull/3778)
* Product titles include encoded entities (https://github.com/woocommerce/woocommerce-admin/pull/3765)
* Stripped HTML from product titles and decoded before displaying them
Stripped html from product titles and entities are decoded before displaying them
* Stripped HTML from product titles and decoded in Stock report
Stripped html from product titles and entities are decoded before displaying them. Now in Stock report
* Added support for HTML tags and encoded entities on product titles
Added support for HTML tags and encoded entities on filtered product list, dropdown menus and tag names.
Also, strip_tags() function was replaced with wp_strip_all_tags() instead.
* strip_tags() function was replaced with wp_strip_all_tags() instead.
* Added control for a variable
Added control for "item->data" before applying wp_strip_all_tags method.
* pre-commit changes
* Test text corrected
* Enable taxes on automatic tax setup (https://github.com/woocommerce/woocommerce-admin/pull/3795)
* Update Country Labeling to Match Core (https://github.com/woocommerce/woocommerce-admin/pull/3790)
* Updated country labeling
Country labeling on Customer Report was updated
* Updated country labeling in other files
* remove .jitm-card notice padding (https://github.com/woocommerce/woocommerce-admin/pull/3814)
* OBW Connect: Fix requesting state (https://github.com/woocommerce/woocommerce-admin/pull/3786)
* OBW Connect: Fix requesting state
* pass down setIsPending
* setIspending propType
* defaultProps
* test
* Revert "test"
This reverts commit e921092b19401931cc1aec8ee84fa53c53b67f36.
* better comparison for redirect
* Fixes Taxes Report search bug and adds initial documentation. (https://github.com/woocommerce/woocommerce-admin/pull/3816)
* Initial Taxes Report documentation.
* Fix taxes endpoint search parameter.
* OBW: Fix retry plugin install button disappearing (https://github.com/woocommerce/woocommerce-admin/pull/3787)
* OBW: Fix retry plugin install btn disappearing
* try suggestion
* Revert "try suggestion"
This reverts commit 5b9386957a501ac3e729e5f16b0ee71c9d792859.
* Fix special character escaping in search. (https://github.com/woocommerce/woocommerce-admin/pull/3826)
* Properly prepare/escape special characters in Product search.
* Properly prepare/escape special characters in Coupon search.
* Properly prepare/escape special characters in Tax code search.
* Fix tracking on migrated options (https://github.com/woocommerce/woocommerce-admin/pull/3828)
* Don't track onboarding toggle if migrating options
* Prevent WC_Tracks from recording event post types not yet registered
* Activity Panels: Remove W Panel (https://github.com/woocommerce/woocommerce-admin/pull/3827)
* Remove W Notif Panel.
* Add back in trapping logic, and hide on non-embed pages.
* add npm run test:zip command (https://github.com/woocommerce/woocommerce-admin/pull/3823)
* add npm run test:zip command
* 1.0.0 release changes🎉 (https://github.com/woocommerce/woocommerce-admin/pull/3831)
* 1.0.0 release changes🎉
* changelog
* 0.26.1 changelog
* Add Report Extension Example: Add default props to ReportFilters (https://github.com/woocommerce/woocommerce-admin/pull/3830)
* ReportFilters component: Add sane defaults
* styles
* add required column
* add left join to sku ordering (https://github.com/woocommerce/woocommerce-admin/pull/3845)
* Deal with lint errors, and improperly merged files
* regenerate package-lock.json
* attempting to resolve package lock conflict.
Co-authored-by: Jeff Stieler <jeff.m.stieler@gmail.com>
Co-authored-by: Joshua T Flowers <joshuatf@gmail.com>
Co-authored-by: Ron Rennick <ron@ronandandrea.com>
Co-authored-by: Fernando <ultimoround@gmail.com>
Co-authored-by: edmundcwm <edmundcwm@gmail.com>
Co-authored-by: Paul Sealock <psealock@gmail.com>
2020-03-10 02:47:39 +00:00
|
|
|
"npm": ">=6.14.2"
|
2020-02-14 02:23:21 +00:00
|
|
|
}
|
2018-04-17 21:03:14 +00:00
|
|
|
}
|