Prefixed Private JS Packages (#33218)
In order to ease the identification of private packages within the monorepo, this adds an `internal-` prefix to all of the current private packages. This makes it immediately clear when reviewing `packages/js` what is and isn't a private package.
This commit is contained in:
parent
541abd9178
commit
112b9ac67a
|
@ -46,24 +46,15 @@
|
||||||
'package: @woocommerce/explat':
|
'package: @woocommerce/explat':
|
||||||
- packages/js/explat/**/*
|
- packages/js/explat/**/*
|
||||||
|
|
||||||
'package: @woocommerce/js-tests':
|
|
||||||
- packages/js/js-tests/**/*
|
|
||||||
|
|
||||||
'package: @woocommerce/navigation':
|
'package: @woocommerce/navigation':
|
||||||
- packages/js/navigation/**/*
|
- packages/js/navigation/**/*
|
||||||
|
|
||||||
'package: @woocommerce/notices':
|
|
||||||
- packages/js/notices/**/*
|
|
||||||
|
|
||||||
'package: @woocommerce/number':
|
'package: @woocommerce/number':
|
||||||
- packages/js/number/**/*
|
- packages/js/number/**/*
|
||||||
|
|
||||||
'package: @woocommerce/onboarding':
|
'package: @woocommerce/onboarding':
|
||||||
- packages/js/onboarding/**/*
|
- packages/js/onboarding/**/*
|
||||||
|
|
||||||
'package: @woocommerce/style-build':
|
|
||||||
- packages/js/style-build/**/*
|
|
||||||
|
|
||||||
'package: @woocommerce/tracks':
|
'package: @woocommerce/tracks':
|
||||||
- packages/js/tracks/**/*
|
- packages/js/tracks/**/*
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{
|
{
|
||||||
"rootDir": "./src",
|
"rootDir": "./src",
|
||||||
"preset": "../../js-tests/jest.config.js"
|
"preset": "../../internal-js-tests/jest.config.js"
|
||||||
}
|
}
|
||||||
|
|
|
@ -94,7 +94,7 @@
|
||||||
"@testing-library/react": "^12.1.3",
|
"@testing-library/react": "^12.1.3",
|
||||||
"@testing-library/user-event": "^13.5.0",
|
"@testing-library/user-event": "^13.5.0",
|
||||||
"@woocommerce/eslint-plugin": "workspace:*",
|
"@woocommerce/eslint-plugin": "workspace:*",
|
||||||
"@woocommerce/style-build": "workspace:*",
|
"@woocommerce/internal-style-build": "workspace:*",
|
||||||
"@wordpress/browserslist-config": "^4.1.1",
|
"@wordpress/browserslist-config": "^4.1.1",
|
||||||
"@wordpress/scripts": "^12.6.1",
|
"@wordpress/scripts": "^12.6.1",
|
||||||
"concurrently": "^7.0.0",
|
"concurrently": "^7.0.0",
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/**
|
/**
|
||||||
* Internal dependencies
|
* Internal dependencies
|
||||||
*/
|
*/
|
||||||
const { webpackConfig } = require( '@woocommerce/style-build' );
|
const { webpackConfig } = require( '@woocommerce/internal-style-build' );
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
mode: process.env.NODE_ENV || 'development',
|
mode: process.env.NODE_ENV || 'development',
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{
|
{
|
||||||
"rootDir": "./src",
|
"rootDir": "./src",
|
||||||
"preset": "../../js-tests/jest.config.js"
|
"preset": "../../internal-js-tests/jest.config.js"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{
|
{
|
||||||
"rootDir": "./src",
|
"rootDir": "./src",
|
||||||
"preset": "../../js-tests/jest.config.js"
|
"preset": "../../internal-js-tests/jest.config.js"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{
|
{
|
||||||
"rootDir": "./src",
|
"rootDir": "./src",
|
||||||
"preset": "../../js-tests/jest.config.js"
|
"preset": "../../internal-js-tests/jest.config.js"
|
||||||
}
|
}
|
||||||
|
|
|
@ -40,7 +40,7 @@
|
||||||
"@testing-library/react": "^12.1.3",
|
"@testing-library/react": "^12.1.3",
|
||||||
"@types/prop-types": "^15.7.4",
|
"@types/prop-types": "^15.7.4",
|
||||||
"@types/wordpress__components": "^9.8.6",
|
"@types/wordpress__components": "^9.8.6",
|
||||||
"@woocommerce/style-build": "workspace:*",
|
"@woocommerce/internal-style-build": "workspace:*",
|
||||||
"@woocommerce/eslint-plugin": "workspace:*",
|
"@woocommerce/eslint-plugin": "workspace:*",
|
||||||
"@wordpress/browserslist-config": "^4.1.1",
|
"@wordpress/browserslist-config": "^4.1.1",
|
||||||
"concurrently": "^7.0.0",
|
"concurrently": "^7.0.0",
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/**
|
/**
|
||||||
* Internal dependencies
|
* Internal dependencies
|
||||||
*/
|
*/
|
||||||
const { webpackConfig } = require( '@woocommerce/style-build' );
|
const { webpackConfig } = require( '@woocommerce/internal-style-build' );
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
mode: process.env.NODE_ENV || 'development',
|
mode: process.env.NODE_ENV || 'development',
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{
|
{
|
||||||
"rootDir": "./src",
|
"rootDir": "./src",
|
||||||
"preset": "../../js-tests/jest.config.js"
|
"preset": "../../internal-js-tests/jest.config.js"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{
|
{
|
||||||
"rootDir": "./src",
|
"rootDir": "./src",
|
||||||
"preset": "../../js-tests/jest.config.js"
|
"preset": "../../internal-js-tests/jest.config.js"
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,7 +12,7 @@ module.exports = [
|
||||||
'@woocommerce/explat',
|
'@woocommerce/explat',
|
||||||
'@woocommerce/extend-cart-checkout-block',
|
'@woocommerce/extend-cart-checkout-block',
|
||||||
'@woocommerce/navigation',
|
'@woocommerce/navigation',
|
||||||
'@woocommerce/notices',
|
'@woocommerce/internal-notices',
|
||||||
'@woocommerce/number',
|
'@woocommerce/number',
|
||||||
'@woocommerce/tracks',
|
'@woocommerce/tracks',
|
||||||
// wc-blocks packages
|
// wc-blocks packages
|
||||||
|
|
|
@ -1,5 +0,0 @@
|
||||||
# Unreleased
|
|
||||||
|
|
||||||
# 0.1.0
|
|
||||||
|
|
||||||
- Released package
|
|
|
@ -1,4 +0,0 @@
|
||||||
Significance: patch
|
|
||||||
Type: dev
|
|
||||||
|
|
||||||
Standardize linting: Ensure e2e packages are lintable
|
|
|
@ -1,15 +0,0 @@
|
||||||
{
|
|
||||||
"root": "packages/js/e2e-builds",
|
|
||||||
"sourceRoot": "packages/js/e2e-builds",
|
|
||||||
"projectType": "library",
|
|
||||||
"targets": {
|
|
||||||
"changelog": {
|
|
||||||
"executor": "./tools/executors/changelogger:changelog",
|
|
||||||
"options": {
|
|
||||||
"action": "add",
|
|
||||||
"cwd": "packages/js/e2e-builds"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
@ -32,7 +32,7 @@
|
||||||
"@babel/plugin-transform-runtime": "^7.16.4",
|
"@babel/plugin-transform-runtime": "^7.16.4",
|
||||||
"@babel/polyfill": "7.12.1",
|
"@babel/polyfill": "7.12.1",
|
||||||
"@babel/preset-env": "7.12.7",
|
"@babel/preset-env": "7.12.7",
|
||||||
"@woocommerce/e2e-builds": "workspace:*",
|
"@woocommerce/internal-e2e-builds": "workspace:*",
|
||||||
"@woocommerce/eslint-plugin": "workspace:*",
|
"@woocommerce/eslint-plugin": "workspace:*",
|
||||||
"@wordpress/babel-plugin-import-jsx-pragma": "1.1.3",
|
"@wordpress/babel-plugin-import-jsx-pragma": "1.1.3",
|
||||||
"@wordpress/babel-preset-default": "3.0.2",
|
"@wordpress/babel-preset-default": "3.0.2",
|
||||||
|
|
|
@ -49,7 +49,7 @@
|
||||||
"@babel/plugin-transform-runtime": "^7.16.4",
|
"@babel/plugin-transform-runtime": "^7.16.4",
|
||||||
"@babel/polyfill": "7.12.1",
|
"@babel/polyfill": "7.12.1",
|
||||||
"@babel/preset-env": "7.12.7",
|
"@babel/preset-env": "7.12.7",
|
||||||
"@woocommerce/e2e-builds": "workspace:*",
|
"@woocommerce/internal-e2e-builds": "workspace:*",
|
||||||
"@wordpress/babel-plugin-import-jsx-pragma": "1.1.3",
|
"@wordpress/babel-plugin-import-jsx-pragma": "1.1.3",
|
||||||
"@wordpress/babel-preset-default": "3.0.2",
|
"@wordpress/babel-preset-default": "3.0.2",
|
||||||
"@wordpress/browserslist-config": "^4.1.0",
|
"@wordpress/browserslist-config": "^4.1.0",
|
||||||
|
|
|
@ -28,7 +28,7 @@
|
||||||
"@babel/preset-env": "7.12.7",
|
"@babel/preset-env": "7.12.7",
|
||||||
"@typescript-eslint/eslint-plugin": "^5.3.0",
|
"@typescript-eslint/eslint-plugin": "^5.3.0",
|
||||||
"@typescript-eslint/parser": "^5.3.0",
|
"@typescript-eslint/parser": "^5.3.0",
|
||||||
"@woocommerce/e2e-builds": "workspace:*",
|
"@woocommerce/internal-e2e-builds": "workspace:*",
|
||||||
"@wordpress/babel-plugin-import-jsx-pragma": "1.1.3",
|
"@wordpress/babel-plugin-import-jsx-pragma": "1.1.3",
|
||||||
"@wordpress/babel-preset-default": "3.0.2",
|
"@wordpress/babel-preset-default": "3.0.2",
|
||||||
"@wordpress/browserslist-config": "^4.1.0",
|
"@wordpress/browserslist-config": "^4.1.0",
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{
|
{
|
||||||
"rootDir": "./src",
|
"rootDir": "./src",
|
||||||
"preset": "../../js-tests/jest.config.js"
|
"preset": "../../internal-js-tests/jest.config.js"
|
||||||
}
|
}
|
||||||
|
|
|
@ -54,7 +54,7 @@
|
||||||
"@types/dompurify": "^2.3.3",
|
"@types/dompurify": "^2.3.3",
|
||||||
"@types/react-transition-group": "^4.4.4",
|
"@types/react-transition-group": "^4.4.4",
|
||||||
"@woocommerce/eslint-plugin": "workspace:*",
|
"@woocommerce/eslint-plugin": "workspace:*",
|
||||||
"@woocommerce/style-build": "workspace:*",
|
"@woocommerce/internal-style-build": "workspace:*",
|
||||||
"@wordpress/browserslist-config": "^4.1.1",
|
"@wordpress/browserslist-config": "^4.1.1",
|
||||||
"concurrently": "^7.0.0",
|
"concurrently": "^7.0.0",
|
||||||
"css-loader": "^3.6.0",
|
"css-loader": "^3.6.0",
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/**
|
/**
|
||||||
* Internal dependencies
|
* Internal dependencies
|
||||||
*/
|
*/
|
||||||
const { webpackConfig } = require( '@woocommerce/style-build' );
|
const { webpackConfig } = require( '@woocommerce/internal-style-build' );
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
mode: process.env.NODE_ENV || 'development',
|
mode: process.env.NODE_ENV || 'development',
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{
|
{
|
||||||
"rootDir": "./src",
|
"rootDir": "./src",
|
||||||
"preset": "../../js-tests/jest.config.js"
|
"preset": "../../internal-js-tests/jest.config.js"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,32 +1,32 @@
|
||||||
{
|
{
|
||||||
"name": "woocommerce/extend-cart-checkout-block",
|
"name": "woocommerce/extend-cart-checkout-block",
|
||||||
"description": "A template for extending the Cart and Checkout blocks to be used with @wordpress/create-block",
|
"description": "A template for extending the Cart and Checkout blocks to be used with @wordpress/create-block",
|
||||||
"type": "library",
|
"type": "library",
|
||||||
"license": "GPL-3.0-or-later",
|
"license": "GPL-3.0-or-later",
|
||||||
"minimum-stability": "dev",
|
"minimum-stability": "dev",
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"automattic/jetpack-changelogger": "3.0.2"
|
"automattic/jetpack-changelogger": "3.0.2"
|
||||||
},
|
},
|
||||||
"config": {
|
"config": {
|
||||||
"platform": {
|
"platform": {
|
||||||
"php": "7.2"
|
"php": "7.2"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"extra": {
|
||||||
|
"changelogger": {
|
||||||
|
"formatter": {
|
||||||
|
"filename": "../../../tools/changelogger/PackageFormatter.php"
|
||||||
|
},
|
||||||
|
"types": {
|
||||||
|
"fix": "Fixes an existing bug",
|
||||||
|
"add": "Adds functionality",
|
||||||
|
"update": "Update existing functionality",
|
||||||
|
"dev": "Development related task",
|
||||||
|
"tweak": "A minor adjustment to the codebase",
|
||||||
|
"performance": "Address performance issues",
|
||||||
|
"enhancement": "Improve existing functionality"
|
||||||
|
},
|
||||||
|
"changelog": "NEXT_CHANGELOG.md"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
|
||||||
"extra": {
|
|
||||||
"changelogger": {
|
|
||||||
"formatter": {
|
|
||||||
"filename": "../../../tools/changelogger/PackageFormatter.php"
|
|
||||||
},
|
|
||||||
"types": {
|
|
||||||
"fix": "Fixes an existing bug",
|
|
||||||
"add": "Adds functionality",
|
|
||||||
"update": "Update existing functionality",
|
|
||||||
"dev": "Development related task",
|
|
||||||
"tweak": "A minor adjustment to the codebase",
|
|
||||||
"performance": "Address performance issues",
|
|
||||||
"enhancement": "Improve existing functionality"
|
|
||||||
},
|
|
||||||
"changelog": "NEXT_CHANGELOG.md"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"name": "@woocommerce/e2e-builds",
|
"name": "@woocommerce/internal-e2e-builds",
|
||||||
"version": "0.1.0",
|
"version": "0.1.0",
|
||||||
"description": "Utility build files for e2e packages",
|
"description": "Utility build files for e2e packages",
|
||||||
"private": true,
|
"private": true,
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"root": "packages/js/internal-e2e-builds",
|
||||||
|
"sourceRoot": "packages/js/internal-e2e-builds",
|
||||||
|
"projectType": "library",
|
||||||
|
"targets": {}
|
||||||
|
}
|
|
@ -1,14 +1,14 @@
|
||||||
{
|
{
|
||||||
"name": "@woocommerce/js-tests",
|
"name": "@woocommerce/internal-js-tests",
|
||||||
"version": "1.1.0",
|
"version": "1.1.0",
|
||||||
"description": "JavaScript test tooling.",
|
"description": "JavaScript test tooling.",
|
||||||
"author": "Automattic",
|
"author": "Automattic",
|
||||||
"license": "GPL-2.0-or-later",
|
"license": "GPL-2.0-or-later",
|
||||||
"homepage": "https://github.com/woocommerce/woocommerce/tree/trunk/packages/js/js-tests/README.md",
|
"homepage": "https://github.com/woocommerce/woocommerce/tree/trunk/packages/js/internal-js-tests/README.md",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/woocommerce/woocommerce.git",
|
"url": "https://github.com/woocommerce/woocommerce.git",
|
||||||
"directory": "packages/js-tests"
|
"directory": "packages/internal-js-tests"
|
||||||
},
|
},
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/woocommerce/woocommerce/issues"
|
"url": "https://github.com/woocommerce/woocommerce/issues"
|
||||||
|
@ -17,7 +17,6 @@
|
||||||
"main": "build/util/index.js",
|
"main": "build/util/index.js",
|
||||||
"module": "build-module/util/index.js",
|
"module": "build-module/util/index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"postinstall": "composer install",
|
|
||||||
"build": "tsc --build ./tsconfig.json ./tsconfig-cjs.json",
|
"build": "tsc --build ./tsconfig.json ./tsconfig-cjs.json",
|
||||||
"ts:check": "tsc --noEmit --project ./tsconfig.json",
|
"ts:check": "tsc --noEmit --project ./tsconfig.json",
|
||||||
"clean": "pnpm exec rimraf *.tsbuildinfo build build-*",
|
"clean": "pnpm exec rimraf *.tsbuildinfo build build-*",
|
|
@ -1,15 +1,8 @@
|
||||||
{
|
{
|
||||||
"root": "packages/js/js-tests",
|
"root": "packages/js/internal-js-tests",
|
||||||
"sourceRoot": "packages/js/js-tests/src",
|
"sourceRoot": "packages/js/internal-js-tests/src",
|
||||||
"projectType": "library",
|
"projectType": "library",
|
||||||
"targets": {
|
"targets": {
|
||||||
"changelog": {
|
|
||||||
"executor": "./tools/executors/changelogger:changelog",
|
|
||||||
"options": {
|
|
||||||
"action": "add",
|
|
||||||
"cwd": "packages/js/js-tests"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"build": {
|
"build": {
|
||||||
"executor": "@nrwl/workspace:run-script",
|
"executor": "@nrwl/workspace:run-script",
|
||||||
"options": {
|
"options": {
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"name": "@woocommerce/notices",
|
"name": "@woocommerce/internal-notices",
|
||||||
"version": "4.0.1",
|
"version": "4.0.1",
|
||||||
"description": "State management for notices.",
|
"description": "State management for notices.",
|
||||||
"author": "The WordPress Contributors",
|
"author": "The WordPress Contributors",
|
||||||
|
@ -9,14 +9,14 @@
|
||||||
"gutenberg",
|
"gutenberg",
|
||||||
"notices"
|
"notices"
|
||||||
],
|
],
|
||||||
"homepage": "https://github.com/WordPress/gutenberg/tree/master/packages/notices/README.md",
|
"homepage": "https://github.com/woocommerce/woocommerce/tree/trunk/packages/js/internal-notices/README.md",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/WordPress/gutenberg.git",
|
"url": "https://github.com/woocommerce/woocommerge.git",
|
||||||
"directory": "packages/notices"
|
"directory": "packages/js/internal-notices"
|
||||||
},
|
},
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/WordPress/gutenberg/issues"
|
"url": "https://github.com/woocommerce/woocommerce/issues"
|
||||||
},
|
},
|
||||||
"main": "build/index.js",
|
"main": "build/index.js",
|
||||||
"module": "build-module/index.js",
|
"module": "build-module/index.js",
|
||||||
|
@ -37,7 +37,6 @@
|
||||||
},
|
},
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"postinstall": "composer install",
|
|
||||||
"clean": "pnpm exec rimraf tsconfig.tsbuildinfo build build-*",
|
"clean": "pnpm exec rimraf tsconfig.tsbuildinfo build build-*",
|
||||||
"build": "tsc --build ./tsconfig.json ./tsconfig-cjs.json",
|
"build": "tsc --build ./tsconfig.json ./tsconfig-cjs.json",
|
||||||
"start": "tsc --build --watch",
|
"start": "tsc --build --watch",
|
|
@ -1,15 +1,8 @@
|
||||||
{
|
{
|
||||||
"root": "packages/js/notices",
|
"root": "packages/js/internal-notices",
|
||||||
"sourceRoot": "packages/js/notices/src",
|
"sourceRoot": "packages/js/internal-notices/src",
|
||||||
"projectType": "library",
|
"projectType": "library",
|
||||||
"targets": {
|
"targets": {
|
||||||
"changelog": {
|
|
||||||
"executor": "./tools/executors/changelogger:changelog",
|
|
||||||
"options": {
|
|
||||||
"action": "add",
|
|
||||||
"cwd": "packages/js/notices"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"build": {
|
"build": {
|
||||||
"executor": "@nrwl/workspace:run-script",
|
"executor": "@nrwl/workspace:run-script",
|
||||||
"options": {
|
"options": {
|
|
@ -5,14 +5,14 @@ This is a partial [Webpack](https://webpack.js.org/) config for building WooComm
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
Create a `webpack.config.js` in your package root that defines the `entry` and `output`, making use of the `rules` and `plugins` from `@woocommerce/style-build`.
|
Create a `webpack.config.js` in your package root that defines the `entry` and `output`, making use of the `rules` and `plugins` from `@woocommerce/internal-style-build`.
|
||||||
|
|
||||||
***Note:*** The `entry` should be named `'build-style'` so the CSS will get picked up by the main `client/` application's `CopyWebpackPlugin` config.
|
***Note:*** The `entry` should be named `'build-style'` so the CSS will get picked up by the main `client/` application's `CopyWebpackPlugin` config.
|
||||||
|
|
||||||
```js
|
```js
|
||||||
// packages/<package-name>/webpack.config.js
|
// packages/<package-name>/webpack.config.js
|
||||||
|
|
||||||
import { webpackConfig } from '@woocommerce/style-build';
|
import { webpackConfig } from '@woocommerce/internal-style-build';
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
mode: process.env.NODE_ENV || 'development',
|
mode: process.env.NODE_ENV || 'development',
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"name": "@woocommerce/style-build",
|
"name": "@woocommerce/internal-style-build",
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"description": "WooCommerce Components SASS Build",
|
"description": "WooCommerce Components SASS Build",
|
||||||
"author": "Automattic",
|
"author": "Automattic",
|
||||||
|
@ -8,7 +8,7 @@
|
||||||
"wordpress",
|
"wordpress",
|
||||||
"woocommerce"
|
"woocommerce"
|
||||||
],
|
],
|
||||||
"homepage": "https://github.com/woocommerce/woocommerce/tree/trunk/packages/js/style-build/README.md",
|
"homepage": "https://github.com/woocommerce/woocommerce/tree/trunk/packages/js/internal-style-build/README.md",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/woocommerce/woocommerce.git"
|
"url": "https://github.com/woocommerce/woocommerce.git"
|
||||||
|
@ -30,8 +30,7 @@
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"lint": "eslint index.js",
|
"lint": "eslint index.js",
|
||||||
"lint:fix": "eslint index.js --fix",
|
"lint:fix": "eslint index.js --fix"
|
||||||
"postinstall": "composer install"
|
|
||||||
},
|
},
|
||||||
"private": true,
|
"private": true,
|
||||||
"devDependencies": {
|
"devDependencies": {
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"root": "packages/js/internal-style-build",
|
||||||
|
"sourceRoot": "packages/js/internal-style-build/src",
|
||||||
|
"projectType": "library",
|
||||||
|
"targets": {}
|
||||||
|
}
|
|
@ -1,5 +0,0 @@
|
||||||
Significance: patch
|
|
||||||
Type: dev
|
|
||||||
Comment: This is a JSON formatting change.
|
|
||||||
|
|
||||||
|
|
|
@ -1,32 +0,0 @@
|
||||||
{
|
|
||||||
"name": "woocommerce/js-tests",
|
|
||||||
"description": "JavaScript test tooling.",
|
|
||||||
"type": "library",
|
|
||||||
"license": "GPL-3.0-or-later",
|
|
||||||
"minimum-stability": "dev",
|
|
||||||
"require-dev": {
|
|
||||||
"automattic/jetpack-changelogger": "3.0.2"
|
|
||||||
},
|
|
||||||
"config": {
|
|
||||||
"platform": {
|
|
||||||
"php": "7.2"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"extra": {
|
|
||||||
"changelogger": {
|
|
||||||
"formatter": {
|
|
||||||
"filename": "../../../tools/changelogger/PackageFormatter.php"
|
|
||||||
},
|
|
||||||
"types": {
|
|
||||||
"fix": "Fixes an existing bug",
|
|
||||||
"add": "Adds functionality",
|
|
||||||
"update": "Update existing functionality",
|
|
||||||
"dev": "Development related task",
|
|
||||||
"tweak": "A minor adjustment to the codebase",
|
|
||||||
"performance": "Address performance issues",
|
|
||||||
"enhancement": "Improve existing functionality"
|
|
||||||
},
|
|
||||||
"changelog": "NEXT_CHANGELOG.md"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,482 +0,0 @@
|
||||||
{
|
|
||||||
"_readme": [
|
|
||||||
"This file locks the dependencies of your project to a known state",
|
|
||||||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
|
||||||
"This file is @generated automatically"
|
|
||||||
],
|
|
||||||
"content-hash": "caca02c44c425b5223e81ad9295a1009",
|
|
||||||
"packages": [],
|
|
||||||
"packages-dev": [
|
|
||||||
{
|
|
||||||
"name": "automattic/jetpack-changelogger",
|
|
||||||
"version": "v3.0.2",
|
|
||||||
"source": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/Automattic/jetpack-changelogger.git",
|
|
||||||
"reference": "b76f9cb4c22ec08490eff91a2e0e5aa586ee04b3"
|
|
||||||
},
|
|
||||||
"dist": {
|
|
||||||
"type": "zip",
|
|
||||||
"url": "https://api.github.com/repos/Automattic/jetpack-changelogger/zipball/b76f9cb4c22ec08490eff91a2e0e5aa586ee04b3",
|
|
||||||
"reference": "b76f9cb4c22ec08490eff91a2e0e5aa586ee04b3",
|
|
||||||
"shasum": ""
|
|
||||||
},
|
|
||||||
"require": {
|
|
||||||
"php": ">=5.6",
|
|
||||||
"symfony/console": "^3.4 | ^5.2",
|
|
||||||
"symfony/process": "^3.4 | ^5.2",
|
|
||||||
"wikimedia/at-ease": "^1.2 | ^2.0"
|
|
||||||
},
|
|
||||||
"require-dev": {
|
|
||||||
"wikimedia/testing-access-wrapper": "^1.0 | ^2.0",
|
|
||||||
"yoast/phpunit-polyfills": "1.0.2"
|
|
||||||
},
|
|
||||||
"bin": [
|
|
||||||
"bin/changelogger"
|
|
||||||
],
|
|
||||||
"type": "project",
|
|
||||||
"extra": {
|
|
||||||
"autotagger": true,
|
|
||||||
"branch-alias": {
|
|
||||||
"dev-master": "3.0.x-dev"
|
|
||||||
},
|
|
||||||
"mirror-repo": "Automattic/jetpack-changelogger",
|
|
||||||
"version-constants": {
|
|
||||||
"::VERSION": "src/Application.php"
|
|
||||||
},
|
|
||||||
"changelogger": {
|
|
||||||
"link-template": "https://github.com/Automattic/jetpack-changelogger/compare/${old}...${new}"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"autoload": {
|
|
||||||
"psr-4": {
|
|
||||||
"Automattic\\Jetpack\\Changelog\\": "lib",
|
|
||||||
"Automattic\\Jetpack\\Changelogger\\": "src"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"notification-url": "https://packagist.org/downloads/",
|
|
||||||
"license": [
|
|
||||||
"GPL-2.0-or-later"
|
|
||||||
],
|
|
||||||
"description": "Jetpack Changelogger tool. Allows for managing changelogs by dropping change files into a changelog directory with each PR.",
|
|
||||||
"support": {
|
|
||||||
"source": "https://github.com/Automattic/jetpack-changelogger/tree/v3.0.2"
|
|
||||||
},
|
|
||||||
"time": "2021-11-02T14:06:49+00:00"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "psr/log",
|
|
||||||
"version": "1.1.4",
|
|
||||||
"source": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/php-fig/log.git",
|
|
||||||
"reference": "d49695b909c3b7628b6289db5479a1c204601f11"
|
|
||||||
},
|
|
||||||
"dist": {
|
|
||||||
"type": "zip",
|
|
||||||
"url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
|
|
||||||
"reference": "d49695b909c3b7628b6289db5479a1c204601f11",
|
|
||||||
"shasum": ""
|
|
||||||
},
|
|
||||||
"require": {
|
|
||||||
"php": ">=5.3.0"
|
|
||||||
},
|
|
||||||
"type": "library",
|
|
||||||
"extra": {
|
|
||||||
"branch-alias": {
|
|
||||||
"dev-master": "1.1.x-dev"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"autoload": {
|
|
||||||
"psr-4": {
|
|
||||||
"Psr\\Log\\": "Psr/Log/"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"notification-url": "https://packagist.org/downloads/",
|
|
||||||
"license": [
|
|
||||||
"MIT"
|
|
||||||
],
|
|
||||||
"authors": [
|
|
||||||
{
|
|
||||||
"name": "PHP-FIG",
|
|
||||||
"homepage": "https://www.php-fig.org/"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"description": "Common interface for logging libraries",
|
|
||||||
"homepage": "https://github.com/php-fig/log",
|
|
||||||
"keywords": [
|
|
||||||
"log",
|
|
||||||
"psr",
|
|
||||||
"psr-3"
|
|
||||||
],
|
|
||||||
"support": {
|
|
||||||
"source": "https://github.com/php-fig/log/tree/1.1.4"
|
|
||||||
},
|
|
||||||
"time": "2021-05-03T11:20:27+00:00"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "symfony/console",
|
|
||||||
"version": "3.4.x-dev",
|
|
||||||
"source": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/symfony/console.git",
|
|
||||||
"reference": "a10b1da6fc93080c180bba7219b5ff5b7518fe81"
|
|
||||||
},
|
|
||||||
"dist": {
|
|
||||||
"type": "zip",
|
|
||||||
"url": "https://api.github.com/repos/symfony/console/zipball/a10b1da6fc93080c180bba7219b5ff5b7518fe81",
|
|
||||||
"reference": "a10b1da6fc93080c180bba7219b5ff5b7518fe81",
|
|
||||||
"shasum": ""
|
|
||||||
},
|
|
||||||
"require": {
|
|
||||||
"php": "^5.5.9|>=7.0.8",
|
|
||||||
"symfony/debug": "~2.8|~3.0|~4.0",
|
|
||||||
"symfony/polyfill-mbstring": "~1.0"
|
|
||||||
},
|
|
||||||
"conflict": {
|
|
||||||
"symfony/dependency-injection": "<3.4",
|
|
||||||
"symfony/process": "<3.3"
|
|
||||||
},
|
|
||||||
"provide": {
|
|
||||||
"psr/log-implementation": "1.0"
|
|
||||||
},
|
|
||||||
"require-dev": {
|
|
||||||
"psr/log": "~1.0",
|
|
||||||
"symfony/config": "~3.3|~4.0",
|
|
||||||
"symfony/dependency-injection": "~3.4|~4.0",
|
|
||||||
"symfony/event-dispatcher": "~2.8|~3.0|~4.0",
|
|
||||||
"symfony/lock": "~3.4|~4.0",
|
|
||||||
"symfony/process": "~3.3|~4.0"
|
|
||||||
},
|
|
||||||
"suggest": {
|
|
||||||
"psr/log": "For using the console logger",
|
|
||||||
"symfony/event-dispatcher": "",
|
|
||||||
"symfony/lock": "",
|
|
||||||
"symfony/process": ""
|
|
||||||
},
|
|
||||||
"type": "library",
|
|
||||||
"autoload": {
|
|
||||||
"psr-4": {
|
|
||||||
"Symfony\\Component\\Console\\": ""
|
|
||||||
},
|
|
||||||
"exclude-from-classmap": [
|
|
||||||
"/Tests/"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"notification-url": "https://packagist.org/downloads/",
|
|
||||||
"license": [
|
|
||||||
"MIT"
|
|
||||||
],
|
|
||||||
"authors": [
|
|
||||||
{
|
|
||||||
"name": "Fabien Potencier",
|
|
||||||
"email": "fabien@symfony.com"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Symfony Community",
|
|
||||||
"homepage": "https://symfony.com/contributors"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"description": "Symfony Console Component",
|
|
||||||
"homepage": "https://symfony.com",
|
|
||||||
"support": {
|
|
||||||
"source": "https://github.com/symfony/console/tree/3.4"
|
|
||||||
},
|
|
||||||
"funding": [
|
|
||||||
{
|
|
||||||
"url": "https://symfony.com/sponsor",
|
|
||||||
"type": "custom"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"url": "https://github.com/fabpot",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
|
||||||
"type": "tidelift"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"time": "2020-10-24T10:57:07+00:00"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "symfony/debug",
|
|
||||||
"version": "4.4.x-dev",
|
|
||||||
"source": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/symfony/debug.git",
|
|
||||||
"reference": "6637e62480b60817b9a6984154a533e8e64c6bd5"
|
|
||||||
},
|
|
||||||
"dist": {
|
|
||||||
"type": "zip",
|
|
||||||
"url": "https://api.github.com/repos/symfony/debug/zipball/6637e62480b60817b9a6984154a533e8e64c6bd5",
|
|
||||||
"reference": "6637e62480b60817b9a6984154a533e8e64c6bd5",
|
|
||||||
"shasum": ""
|
|
||||||
},
|
|
||||||
"require": {
|
|
||||||
"php": ">=7.1.3",
|
|
||||||
"psr/log": "^1|^2|^3"
|
|
||||||
},
|
|
||||||
"conflict": {
|
|
||||||
"symfony/http-kernel": "<3.4"
|
|
||||||
},
|
|
||||||
"require-dev": {
|
|
||||||
"symfony/http-kernel": "^3.4|^4.0|^5.0"
|
|
||||||
},
|
|
||||||
"default-branch": true,
|
|
||||||
"type": "library",
|
|
||||||
"autoload": {
|
|
||||||
"psr-4": {
|
|
||||||
"Symfony\\Component\\Debug\\": ""
|
|
||||||
},
|
|
||||||
"exclude-from-classmap": [
|
|
||||||
"/Tests/"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"notification-url": "https://packagist.org/downloads/",
|
|
||||||
"license": [
|
|
||||||
"MIT"
|
|
||||||
],
|
|
||||||
"authors": [
|
|
||||||
{
|
|
||||||
"name": "Fabien Potencier",
|
|
||||||
"email": "fabien@symfony.com"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Symfony Community",
|
|
||||||
"homepage": "https://symfony.com/contributors"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"description": "Provides tools to ease debugging PHP code",
|
|
||||||
"homepage": "https://symfony.com",
|
|
||||||
"support": {
|
|
||||||
"source": "https://github.com/symfony/debug/tree/v4.4.41"
|
|
||||||
},
|
|
||||||
"funding": [
|
|
||||||
{
|
|
||||||
"url": "https://symfony.com/sponsor",
|
|
||||||
"type": "custom"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"url": "https://github.com/fabpot",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
|
||||||
"type": "tidelift"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"time": "2022-04-12T15:19:55+00:00"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "symfony/polyfill-mbstring",
|
|
||||||
"version": "dev-main",
|
|
||||||
"source": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/symfony/polyfill-mbstring.git",
|
|
||||||
"reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e"
|
|
||||||
},
|
|
||||||
"dist": {
|
|
||||||
"type": "zip",
|
|
||||||
"url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
|
|
||||||
"reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
|
|
||||||
"shasum": ""
|
|
||||||
},
|
|
||||||
"require": {
|
|
||||||
"php": ">=7.1"
|
|
||||||
},
|
|
||||||
"provide": {
|
|
||||||
"ext-mbstring": "*"
|
|
||||||
},
|
|
||||||
"suggest": {
|
|
||||||
"ext-mbstring": "For best performance"
|
|
||||||
},
|
|
||||||
"default-branch": true,
|
|
||||||
"type": "library",
|
|
||||||
"extra": {
|
|
||||||
"branch-alias": {
|
|
||||||
"dev-main": "1.26-dev"
|
|
||||||
},
|
|
||||||
"thanks": {
|
|
||||||
"name": "symfony/polyfill",
|
|
||||||
"url": "https://github.com/symfony/polyfill"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"autoload": {
|
|
||||||
"files": [
|
|
||||||
"bootstrap.php"
|
|
||||||
],
|
|
||||||
"psr-4": {
|
|
||||||
"Symfony\\Polyfill\\Mbstring\\": ""
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"notification-url": "https://packagist.org/downloads/",
|
|
||||||
"license": [
|
|
||||||
"MIT"
|
|
||||||
],
|
|
||||||
"authors": [
|
|
||||||
{
|
|
||||||
"name": "Nicolas Grekas",
|
|
||||||
"email": "p@tchwork.com"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Symfony Community",
|
|
||||||
"homepage": "https://symfony.com/contributors"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"description": "Symfony polyfill for the Mbstring extension",
|
|
||||||
"homepage": "https://symfony.com",
|
|
||||||
"keywords": [
|
|
||||||
"compatibility",
|
|
||||||
"mbstring",
|
|
||||||
"polyfill",
|
|
||||||
"portable",
|
|
||||||
"shim"
|
|
||||||
],
|
|
||||||
"support": {
|
|
||||||
"source": "https://github.com/symfony/polyfill-mbstring/tree/main"
|
|
||||||
},
|
|
||||||
"funding": [
|
|
||||||
{
|
|
||||||
"url": "https://symfony.com/sponsor",
|
|
||||||
"type": "custom"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"url": "https://github.com/fabpot",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
|
||||||
"type": "tidelift"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"time": "2022-05-24T11:49:31+00:00"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "symfony/process",
|
|
||||||
"version": "3.4.x-dev",
|
|
||||||
"source": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/symfony/process.git",
|
|
||||||
"reference": "b8648cf1d5af12a44a51d07ef9bf980921f15fca"
|
|
||||||
},
|
|
||||||
"dist": {
|
|
||||||
"type": "zip",
|
|
||||||
"url": "https://api.github.com/repos/symfony/process/zipball/b8648cf1d5af12a44a51d07ef9bf980921f15fca",
|
|
||||||
"reference": "b8648cf1d5af12a44a51d07ef9bf980921f15fca",
|
|
||||||
"shasum": ""
|
|
||||||
},
|
|
||||||
"require": {
|
|
||||||
"php": "^5.5.9|>=7.0.8"
|
|
||||||
},
|
|
||||||
"type": "library",
|
|
||||||
"autoload": {
|
|
||||||
"psr-4": {
|
|
||||||
"Symfony\\Component\\Process\\": ""
|
|
||||||
},
|
|
||||||
"exclude-from-classmap": [
|
|
||||||
"/Tests/"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"notification-url": "https://packagist.org/downloads/",
|
|
||||||
"license": [
|
|
||||||
"MIT"
|
|
||||||
],
|
|
||||||
"authors": [
|
|
||||||
{
|
|
||||||
"name": "Fabien Potencier",
|
|
||||||
"email": "fabien@symfony.com"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Symfony Community",
|
|
||||||
"homepage": "https://symfony.com/contributors"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"description": "Symfony Process Component",
|
|
||||||
"homepage": "https://symfony.com",
|
|
||||||
"support": {
|
|
||||||
"source": "https://github.com/symfony/process/tree/3.4"
|
|
||||||
},
|
|
||||||
"funding": [
|
|
||||||
{
|
|
||||||
"url": "https://symfony.com/sponsor",
|
|
||||||
"type": "custom"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"url": "https://github.com/fabpot",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
|
||||||
"type": "tidelift"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"time": "2020-10-24T10:57:07+00:00"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "wikimedia/at-ease",
|
|
||||||
"version": "v2.0.0",
|
|
||||||
"source": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/wikimedia/at-ease.git",
|
|
||||||
"reference": "013ac61929797839c80a111a3f1a4710d8248e7a"
|
|
||||||
},
|
|
||||||
"dist": {
|
|
||||||
"type": "zip",
|
|
||||||
"url": "https://api.github.com/repos/wikimedia/at-ease/zipball/013ac61929797839c80a111a3f1a4710d8248e7a",
|
|
||||||
"reference": "013ac61929797839c80a111a3f1a4710d8248e7a",
|
|
||||||
"shasum": ""
|
|
||||||
},
|
|
||||||
"require": {
|
|
||||||
"php": ">=5.6.99"
|
|
||||||
},
|
|
||||||
"require-dev": {
|
|
||||||
"jakub-onderka/php-console-highlighter": "0.3.2",
|
|
||||||
"jakub-onderka/php-parallel-lint": "1.0.0",
|
|
||||||
"mediawiki/mediawiki-codesniffer": "22.0.0",
|
|
||||||
"mediawiki/minus-x": "0.3.1",
|
|
||||||
"ockcyp/covers-validator": "0.5.1 || 0.6.1",
|
|
||||||
"phpunit/phpunit": "4.8.36 || ^6.5"
|
|
||||||
},
|
|
||||||
"type": "library",
|
|
||||||
"autoload": {
|
|
||||||
"files": [
|
|
||||||
"src/Wikimedia/Functions.php"
|
|
||||||
],
|
|
||||||
"psr-4": {
|
|
||||||
"Wikimedia\\AtEase\\": "src/Wikimedia/AtEase/"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"notification-url": "https://packagist.org/downloads/",
|
|
||||||
"license": [
|
|
||||||
"GPL-2.0-or-later"
|
|
||||||
],
|
|
||||||
"authors": [
|
|
||||||
{
|
|
||||||
"name": "Tim Starling",
|
|
||||||
"email": "tstarling@wikimedia.org"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "MediaWiki developers",
|
|
||||||
"email": "wikitech-l@lists.wikimedia.org"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"description": "Safe replacement to @ for suppressing warnings.",
|
|
||||||
"homepage": "https://www.mediawiki.org/wiki/at-ease",
|
|
||||||
"support": {
|
|
||||||
"source": "https://github.com/wikimedia/at-ease/tree/master"
|
|
||||||
},
|
|
||||||
"time": "2018-10-10T15:39:06+00:00"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"aliases": [],
|
|
||||||
"minimum-stability": "dev",
|
|
||||||
"stability-flags": [],
|
|
||||||
"prefer-stable": false,
|
|
||||||
"prefer-lowest": false,
|
|
||||||
"platform": [],
|
|
||||||
"platform-dev": [],
|
|
||||||
"platform-overrides": {
|
|
||||||
"php": "7.2"
|
|
||||||
},
|
|
||||||
"plugin-api-version": "2.3.0"
|
|
||||||
}
|
|
|
@ -1,4 +1,4 @@
|
||||||
{
|
{
|
||||||
"rootDir": "./src",
|
"rootDir": "./src",
|
||||||
"preset": "../../js-tests/jest.config.js"
|
"preset": "../../internal-js-tests/jest.config.js"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +0,0 @@
|
||||||
Significance: minor
|
|
||||||
Type: dev
|
|
||||||
|
|
||||||
Add Jetpack Changelogger
|
|
|
@ -1,4 +0,0 @@
|
||||||
Significance: patch
|
|
||||||
Type: dev
|
|
||||||
|
|
||||||
Migrate @woocommerce/notices to TS
|
|
|
@ -1,5 +0,0 @@
|
||||||
Significance: patch
|
|
||||||
Type: dev
|
|
||||||
Comment: This is a JSON formatting change.
|
|
||||||
|
|
||||||
|
|
|
@ -1,4 +0,0 @@
|
||||||
Significance: patch
|
|
||||||
Type: dev
|
|
||||||
|
|
||||||
Standardize lint scripts: add lint:fix
|
|
|
@ -1,32 +0,0 @@
|
||||||
{
|
|
||||||
"name": "woocommerce/notices",
|
|
||||||
"description": "State management for notices.",
|
|
||||||
"type": "library",
|
|
||||||
"license": "GPL-3.0-or-later",
|
|
||||||
"minimum-stability": "dev",
|
|
||||||
"require-dev": {
|
|
||||||
"automattic/jetpack-changelogger": "3.0.2"
|
|
||||||
},
|
|
||||||
"config": {
|
|
||||||
"platform": {
|
|
||||||
"php": "7.2"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"extra": {
|
|
||||||
"changelogger": {
|
|
||||||
"formatter": {
|
|
||||||
"filename": "../../../tools/changelogger/PackageFormatter.php"
|
|
||||||
},
|
|
||||||
"types": {
|
|
||||||
"fix": "Fixes an existing bug",
|
|
||||||
"add": "Adds functionality",
|
|
||||||
"update": "Update existing functionality",
|
|
||||||
"dev": "Development related task",
|
|
||||||
"tweak": "A minor adjustment to the codebase",
|
|
||||||
"performance": "Address performance issues",
|
|
||||||
"enhancement": "Improve existing functionality"
|
|
||||||
},
|
|
||||||
"changelog": "NEXT_CHANGELOG.md"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,482 +0,0 @@
|
||||||
{
|
|
||||||
"_readme": [
|
|
||||||
"This file locks the dependencies of your project to a known state",
|
|
||||||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
|
||||||
"This file is @generated automatically"
|
|
||||||
],
|
|
||||||
"content-hash": "31e022d61772aa80910da6a4f75062fb",
|
|
||||||
"packages": [],
|
|
||||||
"packages-dev": [
|
|
||||||
{
|
|
||||||
"name": "automattic/jetpack-changelogger",
|
|
||||||
"version": "v3.0.2",
|
|
||||||
"source": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/Automattic/jetpack-changelogger.git",
|
|
||||||
"reference": "b76f9cb4c22ec08490eff91a2e0e5aa586ee04b3"
|
|
||||||
},
|
|
||||||
"dist": {
|
|
||||||
"type": "zip",
|
|
||||||
"url": "https://api.github.com/repos/Automattic/jetpack-changelogger/zipball/b76f9cb4c22ec08490eff91a2e0e5aa586ee04b3",
|
|
||||||
"reference": "b76f9cb4c22ec08490eff91a2e0e5aa586ee04b3",
|
|
||||||
"shasum": ""
|
|
||||||
},
|
|
||||||
"require": {
|
|
||||||
"php": ">=5.6",
|
|
||||||
"symfony/console": "^3.4 | ^5.2",
|
|
||||||
"symfony/process": "^3.4 | ^5.2",
|
|
||||||
"wikimedia/at-ease": "^1.2 | ^2.0"
|
|
||||||
},
|
|
||||||
"require-dev": {
|
|
||||||
"wikimedia/testing-access-wrapper": "^1.0 | ^2.0",
|
|
||||||
"yoast/phpunit-polyfills": "1.0.2"
|
|
||||||
},
|
|
||||||
"bin": [
|
|
||||||
"bin/changelogger"
|
|
||||||
],
|
|
||||||
"type": "project",
|
|
||||||
"extra": {
|
|
||||||
"autotagger": true,
|
|
||||||
"branch-alias": {
|
|
||||||
"dev-master": "3.0.x-dev"
|
|
||||||
},
|
|
||||||
"mirror-repo": "Automattic/jetpack-changelogger",
|
|
||||||
"version-constants": {
|
|
||||||
"::VERSION": "src/Application.php"
|
|
||||||
},
|
|
||||||
"changelogger": {
|
|
||||||
"link-template": "https://github.com/Automattic/jetpack-changelogger/compare/${old}...${new}"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"autoload": {
|
|
||||||
"psr-4": {
|
|
||||||
"Automattic\\Jetpack\\Changelog\\": "lib",
|
|
||||||
"Automattic\\Jetpack\\Changelogger\\": "src"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"notification-url": "https://packagist.org/downloads/",
|
|
||||||
"license": [
|
|
||||||
"GPL-2.0-or-later"
|
|
||||||
],
|
|
||||||
"description": "Jetpack Changelogger tool. Allows for managing changelogs by dropping change files into a changelog directory with each PR.",
|
|
||||||
"support": {
|
|
||||||
"source": "https://github.com/Automattic/jetpack-changelogger/tree/v3.0.2"
|
|
||||||
},
|
|
||||||
"time": "2021-11-02T14:06:49+00:00"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "psr/log",
|
|
||||||
"version": "1.1.4",
|
|
||||||
"source": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/php-fig/log.git",
|
|
||||||
"reference": "d49695b909c3b7628b6289db5479a1c204601f11"
|
|
||||||
},
|
|
||||||
"dist": {
|
|
||||||
"type": "zip",
|
|
||||||
"url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
|
|
||||||
"reference": "d49695b909c3b7628b6289db5479a1c204601f11",
|
|
||||||
"shasum": ""
|
|
||||||
},
|
|
||||||
"require": {
|
|
||||||
"php": ">=5.3.0"
|
|
||||||
},
|
|
||||||
"type": "library",
|
|
||||||
"extra": {
|
|
||||||
"branch-alias": {
|
|
||||||
"dev-master": "1.1.x-dev"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"autoload": {
|
|
||||||
"psr-4": {
|
|
||||||
"Psr\\Log\\": "Psr/Log/"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"notification-url": "https://packagist.org/downloads/",
|
|
||||||
"license": [
|
|
||||||
"MIT"
|
|
||||||
],
|
|
||||||
"authors": [
|
|
||||||
{
|
|
||||||
"name": "PHP-FIG",
|
|
||||||
"homepage": "https://www.php-fig.org/"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"description": "Common interface for logging libraries",
|
|
||||||
"homepage": "https://github.com/php-fig/log",
|
|
||||||
"keywords": [
|
|
||||||
"log",
|
|
||||||
"psr",
|
|
||||||
"psr-3"
|
|
||||||
],
|
|
||||||
"support": {
|
|
||||||
"source": "https://github.com/php-fig/log/tree/1.1.4"
|
|
||||||
},
|
|
||||||
"time": "2021-05-03T11:20:27+00:00"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "symfony/console",
|
|
||||||
"version": "3.4.x-dev",
|
|
||||||
"source": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/symfony/console.git",
|
|
||||||
"reference": "a10b1da6fc93080c180bba7219b5ff5b7518fe81"
|
|
||||||
},
|
|
||||||
"dist": {
|
|
||||||
"type": "zip",
|
|
||||||
"url": "https://api.github.com/repos/symfony/console/zipball/a10b1da6fc93080c180bba7219b5ff5b7518fe81",
|
|
||||||
"reference": "a10b1da6fc93080c180bba7219b5ff5b7518fe81",
|
|
||||||
"shasum": ""
|
|
||||||
},
|
|
||||||
"require": {
|
|
||||||
"php": "^5.5.9|>=7.0.8",
|
|
||||||
"symfony/debug": "~2.8|~3.0|~4.0",
|
|
||||||
"symfony/polyfill-mbstring": "~1.0"
|
|
||||||
},
|
|
||||||
"conflict": {
|
|
||||||
"symfony/dependency-injection": "<3.4",
|
|
||||||
"symfony/process": "<3.3"
|
|
||||||
},
|
|
||||||
"provide": {
|
|
||||||
"psr/log-implementation": "1.0"
|
|
||||||
},
|
|
||||||
"require-dev": {
|
|
||||||
"psr/log": "~1.0",
|
|
||||||
"symfony/config": "~3.3|~4.0",
|
|
||||||
"symfony/dependency-injection": "~3.4|~4.0",
|
|
||||||
"symfony/event-dispatcher": "~2.8|~3.0|~4.0",
|
|
||||||
"symfony/lock": "~3.4|~4.0",
|
|
||||||
"symfony/process": "~3.3|~4.0"
|
|
||||||
},
|
|
||||||
"suggest": {
|
|
||||||
"psr/log": "For using the console logger",
|
|
||||||
"symfony/event-dispatcher": "",
|
|
||||||
"symfony/lock": "",
|
|
||||||
"symfony/process": ""
|
|
||||||
},
|
|
||||||
"type": "library",
|
|
||||||
"autoload": {
|
|
||||||
"psr-4": {
|
|
||||||
"Symfony\\Component\\Console\\": ""
|
|
||||||
},
|
|
||||||
"exclude-from-classmap": [
|
|
||||||
"/Tests/"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"notification-url": "https://packagist.org/downloads/",
|
|
||||||
"license": [
|
|
||||||
"MIT"
|
|
||||||
],
|
|
||||||
"authors": [
|
|
||||||
{
|
|
||||||
"name": "Fabien Potencier",
|
|
||||||
"email": "fabien@symfony.com"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Symfony Community",
|
|
||||||
"homepage": "https://symfony.com/contributors"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"description": "Symfony Console Component",
|
|
||||||
"homepage": "https://symfony.com",
|
|
||||||
"support": {
|
|
||||||
"source": "https://github.com/symfony/console/tree/3.4"
|
|
||||||
},
|
|
||||||
"funding": [
|
|
||||||
{
|
|
||||||
"url": "https://symfony.com/sponsor",
|
|
||||||
"type": "custom"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"url": "https://github.com/fabpot",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
|
||||||
"type": "tidelift"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"time": "2020-10-24T10:57:07+00:00"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "symfony/debug",
|
|
||||||
"version": "4.4.x-dev",
|
|
||||||
"source": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/symfony/debug.git",
|
|
||||||
"reference": "6637e62480b60817b9a6984154a533e8e64c6bd5"
|
|
||||||
},
|
|
||||||
"dist": {
|
|
||||||
"type": "zip",
|
|
||||||
"url": "https://api.github.com/repos/symfony/debug/zipball/6637e62480b60817b9a6984154a533e8e64c6bd5",
|
|
||||||
"reference": "6637e62480b60817b9a6984154a533e8e64c6bd5",
|
|
||||||
"shasum": ""
|
|
||||||
},
|
|
||||||
"require": {
|
|
||||||
"php": ">=7.1.3",
|
|
||||||
"psr/log": "^1|^2|^3"
|
|
||||||
},
|
|
||||||
"conflict": {
|
|
||||||
"symfony/http-kernel": "<3.4"
|
|
||||||
},
|
|
||||||
"require-dev": {
|
|
||||||
"symfony/http-kernel": "^3.4|^4.0|^5.0"
|
|
||||||
},
|
|
||||||
"default-branch": true,
|
|
||||||
"type": "library",
|
|
||||||
"autoload": {
|
|
||||||
"psr-4": {
|
|
||||||
"Symfony\\Component\\Debug\\": ""
|
|
||||||
},
|
|
||||||
"exclude-from-classmap": [
|
|
||||||
"/Tests/"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"notification-url": "https://packagist.org/downloads/",
|
|
||||||
"license": [
|
|
||||||
"MIT"
|
|
||||||
],
|
|
||||||
"authors": [
|
|
||||||
{
|
|
||||||
"name": "Fabien Potencier",
|
|
||||||
"email": "fabien@symfony.com"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Symfony Community",
|
|
||||||
"homepage": "https://symfony.com/contributors"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"description": "Provides tools to ease debugging PHP code",
|
|
||||||
"homepage": "https://symfony.com",
|
|
||||||
"support": {
|
|
||||||
"source": "https://github.com/symfony/debug/tree/v4.4.41"
|
|
||||||
},
|
|
||||||
"funding": [
|
|
||||||
{
|
|
||||||
"url": "https://symfony.com/sponsor",
|
|
||||||
"type": "custom"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"url": "https://github.com/fabpot",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
|
||||||
"type": "tidelift"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"time": "2022-04-12T15:19:55+00:00"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "symfony/polyfill-mbstring",
|
|
||||||
"version": "dev-main",
|
|
||||||
"source": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/symfony/polyfill-mbstring.git",
|
|
||||||
"reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e"
|
|
||||||
},
|
|
||||||
"dist": {
|
|
||||||
"type": "zip",
|
|
||||||
"url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
|
|
||||||
"reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
|
|
||||||
"shasum": ""
|
|
||||||
},
|
|
||||||
"require": {
|
|
||||||
"php": ">=7.1"
|
|
||||||
},
|
|
||||||
"provide": {
|
|
||||||
"ext-mbstring": "*"
|
|
||||||
},
|
|
||||||
"suggest": {
|
|
||||||
"ext-mbstring": "For best performance"
|
|
||||||
},
|
|
||||||
"default-branch": true,
|
|
||||||
"type": "library",
|
|
||||||
"extra": {
|
|
||||||
"branch-alias": {
|
|
||||||
"dev-main": "1.26-dev"
|
|
||||||
},
|
|
||||||
"thanks": {
|
|
||||||
"name": "symfony/polyfill",
|
|
||||||
"url": "https://github.com/symfony/polyfill"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"autoload": {
|
|
||||||
"files": [
|
|
||||||
"bootstrap.php"
|
|
||||||
],
|
|
||||||
"psr-4": {
|
|
||||||
"Symfony\\Polyfill\\Mbstring\\": ""
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"notification-url": "https://packagist.org/downloads/",
|
|
||||||
"license": [
|
|
||||||
"MIT"
|
|
||||||
],
|
|
||||||
"authors": [
|
|
||||||
{
|
|
||||||
"name": "Nicolas Grekas",
|
|
||||||
"email": "p@tchwork.com"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Symfony Community",
|
|
||||||
"homepage": "https://symfony.com/contributors"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"description": "Symfony polyfill for the Mbstring extension",
|
|
||||||
"homepage": "https://symfony.com",
|
|
||||||
"keywords": [
|
|
||||||
"compatibility",
|
|
||||||
"mbstring",
|
|
||||||
"polyfill",
|
|
||||||
"portable",
|
|
||||||
"shim"
|
|
||||||
],
|
|
||||||
"support": {
|
|
||||||
"source": "https://github.com/symfony/polyfill-mbstring/tree/main"
|
|
||||||
},
|
|
||||||
"funding": [
|
|
||||||
{
|
|
||||||
"url": "https://symfony.com/sponsor",
|
|
||||||
"type": "custom"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"url": "https://github.com/fabpot",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
|
||||||
"type": "tidelift"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"time": "2022-05-24T11:49:31+00:00"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "symfony/process",
|
|
||||||
"version": "3.4.x-dev",
|
|
||||||
"source": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/symfony/process.git",
|
|
||||||
"reference": "b8648cf1d5af12a44a51d07ef9bf980921f15fca"
|
|
||||||
},
|
|
||||||
"dist": {
|
|
||||||
"type": "zip",
|
|
||||||
"url": "https://api.github.com/repos/symfony/process/zipball/b8648cf1d5af12a44a51d07ef9bf980921f15fca",
|
|
||||||
"reference": "b8648cf1d5af12a44a51d07ef9bf980921f15fca",
|
|
||||||
"shasum": ""
|
|
||||||
},
|
|
||||||
"require": {
|
|
||||||
"php": "^5.5.9|>=7.0.8"
|
|
||||||
},
|
|
||||||
"type": "library",
|
|
||||||
"autoload": {
|
|
||||||
"psr-4": {
|
|
||||||
"Symfony\\Component\\Process\\": ""
|
|
||||||
},
|
|
||||||
"exclude-from-classmap": [
|
|
||||||
"/Tests/"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"notification-url": "https://packagist.org/downloads/",
|
|
||||||
"license": [
|
|
||||||
"MIT"
|
|
||||||
],
|
|
||||||
"authors": [
|
|
||||||
{
|
|
||||||
"name": "Fabien Potencier",
|
|
||||||
"email": "fabien@symfony.com"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Symfony Community",
|
|
||||||
"homepage": "https://symfony.com/contributors"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"description": "Symfony Process Component",
|
|
||||||
"homepage": "https://symfony.com",
|
|
||||||
"support": {
|
|
||||||
"source": "https://github.com/symfony/process/tree/3.4"
|
|
||||||
},
|
|
||||||
"funding": [
|
|
||||||
{
|
|
||||||
"url": "https://symfony.com/sponsor",
|
|
||||||
"type": "custom"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"url": "https://github.com/fabpot",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
|
||||||
"type": "tidelift"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"time": "2020-10-24T10:57:07+00:00"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "wikimedia/at-ease",
|
|
||||||
"version": "v2.0.0",
|
|
||||||
"source": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/wikimedia/at-ease.git",
|
|
||||||
"reference": "013ac61929797839c80a111a3f1a4710d8248e7a"
|
|
||||||
},
|
|
||||||
"dist": {
|
|
||||||
"type": "zip",
|
|
||||||
"url": "https://api.github.com/repos/wikimedia/at-ease/zipball/013ac61929797839c80a111a3f1a4710d8248e7a",
|
|
||||||
"reference": "013ac61929797839c80a111a3f1a4710d8248e7a",
|
|
||||||
"shasum": ""
|
|
||||||
},
|
|
||||||
"require": {
|
|
||||||
"php": ">=5.6.99"
|
|
||||||
},
|
|
||||||
"require-dev": {
|
|
||||||
"jakub-onderka/php-console-highlighter": "0.3.2",
|
|
||||||
"jakub-onderka/php-parallel-lint": "1.0.0",
|
|
||||||
"mediawiki/mediawiki-codesniffer": "22.0.0",
|
|
||||||
"mediawiki/minus-x": "0.3.1",
|
|
||||||
"ockcyp/covers-validator": "0.5.1 || 0.6.1",
|
|
||||||
"phpunit/phpunit": "4.8.36 || ^6.5"
|
|
||||||
},
|
|
||||||
"type": "library",
|
|
||||||
"autoload": {
|
|
||||||
"files": [
|
|
||||||
"src/Wikimedia/Functions.php"
|
|
||||||
],
|
|
||||||
"psr-4": {
|
|
||||||
"Wikimedia\\AtEase\\": "src/Wikimedia/AtEase/"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"notification-url": "https://packagist.org/downloads/",
|
|
||||||
"license": [
|
|
||||||
"GPL-2.0-or-later"
|
|
||||||
],
|
|
||||||
"authors": [
|
|
||||||
{
|
|
||||||
"name": "Tim Starling",
|
|
||||||
"email": "tstarling@wikimedia.org"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "MediaWiki developers",
|
|
||||||
"email": "wikitech-l@lists.wikimedia.org"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"description": "Safe replacement to @ for suppressing warnings.",
|
|
||||||
"homepage": "https://www.mediawiki.org/wiki/at-ease",
|
|
||||||
"support": {
|
|
||||||
"source": "https://github.com/wikimedia/at-ease/tree/master"
|
|
||||||
},
|
|
||||||
"time": "2018-10-10T15:39:06+00:00"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"aliases": [],
|
|
||||||
"minimum-stability": "dev",
|
|
||||||
"stability-flags": [],
|
|
||||||
"prefer-stable": false,
|
|
||||||
"prefer-lowest": false,
|
|
||||||
"platform": [],
|
|
||||||
"platform-dev": [],
|
|
||||||
"platform-overrides": {
|
|
||||||
"php": "7.2"
|
|
||||||
},
|
|
||||||
"plugin-api-version": "2.3.0"
|
|
||||||
}
|
|
|
@ -1,4 +1,4 @@
|
||||||
{
|
{
|
||||||
"rootDir": "./src",
|
"rootDir": "./src",
|
||||||
"preset": "../../js-tests/jest.config.js"
|
"preset": "../../internal-js-tests/jest.config.js"
|
||||||
}
|
}
|
||||||
|
|
|
@ -40,7 +40,7 @@
|
||||||
"@babel/core": "^7.17.5",
|
"@babel/core": "^7.17.5",
|
||||||
"@types/wordpress__data": "^6.0.0",
|
"@types/wordpress__data": "^6.0.0",
|
||||||
"@woocommerce/eslint-plugin": "workspace:*",
|
"@woocommerce/eslint-plugin": "workspace:*",
|
||||||
"@woocommerce/style-build": "workspace:*",
|
"@woocommerce/internal-style-build": "workspace:*",
|
||||||
"@wordpress/browserslist-config": "^4.1.1",
|
"@wordpress/browserslist-config": "^4.1.1",
|
||||||
"css-loader": "^3.6.0",
|
"css-loader": "^3.6.0",
|
||||||
"eslint": "^8.12.0",
|
"eslint": "^8.12.0",
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/**
|
/**
|
||||||
* Internal dependencies
|
* Internal dependencies
|
||||||
*/
|
*/
|
||||||
const { webpackConfig } = require( '@woocommerce/style-build' );
|
const { webpackConfig } = require( '@woocommerce/internal-style-build' );
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
mode: process.env.NODE_ENV || 'development',
|
mode: process.env.NODE_ENV || 'development',
|
||||||
|
|
|
@ -1,4 +0,0 @@
|
||||||
Significance: minor
|
|
||||||
Type: dev
|
|
||||||
|
|
||||||
Add Jetpack Changelogger
|
|
|
@ -1,4 +0,0 @@
|
||||||
Significance: patch
|
|
||||||
Type: dev
|
|
||||||
|
|
||||||
Standardize lint scripts: add lint:fix
|
|
|
@ -1,32 +0,0 @@
|
||||||
{
|
|
||||||
"name": "woocommerce/style-build",
|
|
||||||
"description": "WooCommerce Components SASS Build",
|
|
||||||
"type": "library",
|
|
||||||
"license": "GPL-3.0-or-later",
|
|
||||||
"minimum-stability": "dev",
|
|
||||||
"require-dev": {
|
|
||||||
"automattic/jetpack-changelogger": "3.0.2"
|
|
||||||
},
|
|
||||||
"config": {
|
|
||||||
"platform": {
|
|
||||||
"php": "7.2"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"extra": {
|
|
||||||
"changelogger": {
|
|
||||||
"formatter": {
|
|
||||||
"filename": "../../../tools/changelogger/PackageFormatter.php"
|
|
||||||
},
|
|
||||||
"types": {
|
|
||||||
"fix": "Fixes an existing bug",
|
|
||||||
"add": "Adds functionality",
|
|
||||||
"update": "Update existing functionality",
|
|
||||||
"dev": "Development related task",
|
|
||||||
"tweak": "A minor adjustment to the codebase",
|
|
||||||
"performance": "Address performance issues",
|
|
||||||
"enhancement": "Improve existing functionality"
|
|
||||||
},
|
|
||||||
"changelog": "NEXT_CHANGELOG.md"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,482 +0,0 @@
|
||||||
{
|
|
||||||
"_readme": [
|
|
||||||
"This file locks the dependencies of your project to a known state",
|
|
||||||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
|
||||||
"This file is @generated automatically"
|
|
||||||
],
|
|
||||||
"content-hash": "b737a8804b01ff6f93540059542fd631",
|
|
||||||
"packages": [],
|
|
||||||
"packages-dev": [
|
|
||||||
{
|
|
||||||
"name": "automattic/jetpack-changelogger",
|
|
||||||
"version": "v3.0.2",
|
|
||||||
"source": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/Automattic/jetpack-changelogger.git",
|
|
||||||
"reference": "b76f9cb4c22ec08490eff91a2e0e5aa586ee04b3"
|
|
||||||
},
|
|
||||||
"dist": {
|
|
||||||
"type": "zip",
|
|
||||||
"url": "https://api.github.com/repos/Automattic/jetpack-changelogger/zipball/b76f9cb4c22ec08490eff91a2e0e5aa586ee04b3",
|
|
||||||
"reference": "b76f9cb4c22ec08490eff91a2e0e5aa586ee04b3",
|
|
||||||
"shasum": ""
|
|
||||||
},
|
|
||||||
"require": {
|
|
||||||
"php": ">=5.6",
|
|
||||||
"symfony/console": "^3.4 | ^5.2",
|
|
||||||
"symfony/process": "^3.4 | ^5.2",
|
|
||||||
"wikimedia/at-ease": "^1.2 | ^2.0"
|
|
||||||
},
|
|
||||||
"require-dev": {
|
|
||||||
"wikimedia/testing-access-wrapper": "^1.0 | ^2.0",
|
|
||||||
"yoast/phpunit-polyfills": "1.0.2"
|
|
||||||
},
|
|
||||||
"bin": [
|
|
||||||
"bin/changelogger"
|
|
||||||
],
|
|
||||||
"type": "project",
|
|
||||||
"extra": {
|
|
||||||
"autotagger": true,
|
|
||||||
"branch-alias": {
|
|
||||||
"dev-master": "3.0.x-dev"
|
|
||||||
},
|
|
||||||
"mirror-repo": "Automattic/jetpack-changelogger",
|
|
||||||
"version-constants": {
|
|
||||||
"::VERSION": "src/Application.php"
|
|
||||||
},
|
|
||||||
"changelogger": {
|
|
||||||
"link-template": "https://github.com/Automattic/jetpack-changelogger/compare/${old}...${new}"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"autoload": {
|
|
||||||
"psr-4": {
|
|
||||||
"Automattic\\Jetpack\\Changelog\\": "lib",
|
|
||||||
"Automattic\\Jetpack\\Changelogger\\": "src"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"notification-url": "https://packagist.org/downloads/",
|
|
||||||
"license": [
|
|
||||||
"GPL-2.0-or-later"
|
|
||||||
],
|
|
||||||
"description": "Jetpack Changelogger tool. Allows for managing changelogs by dropping change files into a changelog directory with each PR.",
|
|
||||||
"support": {
|
|
||||||
"source": "https://github.com/Automattic/jetpack-changelogger/tree/v3.0.2"
|
|
||||||
},
|
|
||||||
"time": "2021-11-02T14:06:49+00:00"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "psr/log",
|
|
||||||
"version": "1.1.4",
|
|
||||||
"source": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/php-fig/log.git",
|
|
||||||
"reference": "d49695b909c3b7628b6289db5479a1c204601f11"
|
|
||||||
},
|
|
||||||
"dist": {
|
|
||||||
"type": "zip",
|
|
||||||
"url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
|
|
||||||
"reference": "d49695b909c3b7628b6289db5479a1c204601f11",
|
|
||||||
"shasum": ""
|
|
||||||
},
|
|
||||||
"require": {
|
|
||||||
"php": ">=5.3.0"
|
|
||||||
},
|
|
||||||
"type": "library",
|
|
||||||
"extra": {
|
|
||||||
"branch-alias": {
|
|
||||||
"dev-master": "1.1.x-dev"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"autoload": {
|
|
||||||
"psr-4": {
|
|
||||||
"Psr\\Log\\": "Psr/Log/"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"notification-url": "https://packagist.org/downloads/",
|
|
||||||
"license": [
|
|
||||||
"MIT"
|
|
||||||
],
|
|
||||||
"authors": [
|
|
||||||
{
|
|
||||||
"name": "PHP-FIG",
|
|
||||||
"homepage": "https://www.php-fig.org/"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"description": "Common interface for logging libraries",
|
|
||||||
"homepage": "https://github.com/php-fig/log",
|
|
||||||
"keywords": [
|
|
||||||
"log",
|
|
||||||
"psr",
|
|
||||||
"psr-3"
|
|
||||||
],
|
|
||||||
"support": {
|
|
||||||
"source": "https://github.com/php-fig/log/tree/1.1.4"
|
|
||||||
},
|
|
||||||
"time": "2021-05-03T11:20:27+00:00"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "symfony/console",
|
|
||||||
"version": "3.4.x-dev",
|
|
||||||
"source": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/symfony/console.git",
|
|
||||||
"reference": "a10b1da6fc93080c180bba7219b5ff5b7518fe81"
|
|
||||||
},
|
|
||||||
"dist": {
|
|
||||||
"type": "zip",
|
|
||||||
"url": "https://api.github.com/repos/symfony/console/zipball/a10b1da6fc93080c180bba7219b5ff5b7518fe81",
|
|
||||||
"reference": "a10b1da6fc93080c180bba7219b5ff5b7518fe81",
|
|
||||||
"shasum": ""
|
|
||||||
},
|
|
||||||
"require": {
|
|
||||||
"php": "^5.5.9|>=7.0.8",
|
|
||||||
"symfony/debug": "~2.8|~3.0|~4.0",
|
|
||||||
"symfony/polyfill-mbstring": "~1.0"
|
|
||||||
},
|
|
||||||
"conflict": {
|
|
||||||
"symfony/dependency-injection": "<3.4",
|
|
||||||
"symfony/process": "<3.3"
|
|
||||||
},
|
|
||||||
"provide": {
|
|
||||||
"psr/log-implementation": "1.0"
|
|
||||||
},
|
|
||||||
"require-dev": {
|
|
||||||
"psr/log": "~1.0",
|
|
||||||
"symfony/config": "~3.3|~4.0",
|
|
||||||
"symfony/dependency-injection": "~3.4|~4.0",
|
|
||||||
"symfony/event-dispatcher": "~2.8|~3.0|~4.0",
|
|
||||||
"symfony/lock": "~3.4|~4.0",
|
|
||||||
"symfony/process": "~3.3|~4.0"
|
|
||||||
},
|
|
||||||
"suggest": {
|
|
||||||
"psr/log": "For using the console logger",
|
|
||||||
"symfony/event-dispatcher": "",
|
|
||||||
"symfony/lock": "",
|
|
||||||
"symfony/process": ""
|
|
||||||
},
|
|
||||||
"type": "library",
|
|
||||||
"autoload": {
|
|
||||||
"psr-4": {
|
|
||||||
"Symfony\\Component\\Console\\": ""
|
|
||||||
},
|
|
||||||
"exclude-from-classmap": [
|
|
||||||
"/Tests/"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"notification-url": "https://packagist.org/downloads/",
|
|
||||||
"license": [
|
|
||||||
"MIT"
|
|
||||||
],
|
|
||||||
"authors": [
|
|
||||||
{
|
|
||||||
"name": "Fabien Potencier",
|
|
||||||
"email": "fabien@symfony.com"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Symfony Community",
|
|
||||||
"homepage": "https://symfony.com/contributors"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"description": "Symfony Console Component",
|
|
||||||
"homepage": "https://symfony.com",
|
|
||||||
"support": {
|
|
||||||
"source": "https://github.com/symfony/console/tree/3.4"
|
|
||||||
},
|
|
||||||
"funding": [
|
|
||||||
{
|
|
||||||
"url": "https://symfony.com/sponsor",
|
|
||||||
"type": "custom"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"url": "https://github.com/fabpot",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
|
||||||
"type": "tidelift"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"time": "2020-10-24T10:57:07+00:00"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "symfony/debug",
|
|
||||||
"version": "4.4.x-dev",
|
|
||||||
"source": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/symfony/debug.git",
|
|
||||||
"reference": "6637e62480b60817b9a6984154a533e8e64c6bd5"
|
|
||||||
},
|
|
||||||
"dist": {
|
|
||||||
"type": "zip",
|
|
||||||
"url": "https://api.github.com/repos/symfony/debug/zipball/6637e62480b60817b9a6984154a533e8e64c6bd5",
|
|
||||||
"reference": "6637e62480b60817b9a6984154a533e8e64c6bd5",
|
|
||||||
"shasum": ""
|
|
||||||
},
|
|
||||||
"require": {
|
|
||||||
"php": ">=7.1.3",
|
|
||||||
"psr/log": "^1|^2|^3"
|
|
||||||
},
|
|
||||||
"conflict": {
|
|
||||||
"symfony/http-kernel": "<3.4"
|
|
||||||
},
|
|
||||||
"require-dev": {
|
|
||||||
"symfony/http-kernel": "^3.4|^4.0|^5.0"
|
|
||||||
},
|
|
||||||
"default-branch": true,
|
|
||||||
"type": "library",
|
|
||||||
"autoload": {
|
|
||||||
"psr-4": {
|
|
||||||
"Symfony\\Component\\Debug\\": ""
|
|
||||||
},
|
|
||||||
"exclude-from-classmap": [
|
|
||||||
"/Tests/"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"notification-url": "https://packagist.org/downloads/",
|
|
||||||
"license": [
|
|
||||||
"MIT"
|
|
||||||
],
|
|
||||||
"authors": [
|
|
||||||
{
|
|
||||||
"name": "Fabien Potencier",
|
|
||||||
"email": "fabien@symfony.com"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Symfony Community",
|
|
||||||
"homepage": "https://symfony.com/contributors"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"description": "Provides tools to ease debugging PHP code",
|
|
||||||
"homepage": "https://symfony.com",
|
|
||||||
"support": {
|
|
||||||
"source": "https://github.com/symfony/debug/tree/v4.4.41"
|
|
||||||
},
|
|
||||||
"funding": [
|
|
||||||
{
|
|
||||||
"url": "https://symfony.com/sponsor",
|
|
||||||
"type": "custom"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"url": "https://github.com/fabpot",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
|
||||||
"type": "tidelift"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"time": "2022-04-12T15:19:55+00:00"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "symfony/polyfill-mbstring",
|
|
||||||
"version": "dev-main",
|
|
||||||
"source": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/symfony/polyfill-mbstring.git",
|
|
||||||
"reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e"
|
|
||||||
},
|
|
||||||
"dist": {
|
|
||||||
"type": "zip",
|
|
||||||
"url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
|
|
||||||
"reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
|
|
||||||
"shasum": ""
|
|
||||||
},
|
|
||||||
"require": {
|
|
||||||
"php": ">=7.1"
|
|
||||||
},
|
|
||||||
"provide": {
|
|
||||||
"ext-mbstring": "*"
|
|
||||||
},
|
|
||||||
"suggest": {
|
|
||||||
"ext-mbstring": "For best performance"
|
|
||||||
},
|
|
||||||
"default-branch": true,
|
|
||||||
"type": "library",
|
|
||||||
"extra": {
|
|
||||||
"branch-alias": {
|
|
||||||
"dev-main": "1.26-dev"
|
|
||||||
},
|
|
||||||
"thanks": {
|
|
||||||
"name": "symfony/polyfill",
|
|
||||||
"url": "https://github.com/symfony/polyfill"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"autoload": {
|
|
||||||
"files": [
|
|
||||||
"bootstrap.php"
|
|
||||||
],
|
|
||||||
"psr-4": {
|
|
||||||
"Symfony\\Polyfill\\Mbstring\\": ""
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"notification-url": "https://packagist.org/downloads/",
|
|
||||||
"license": [
|
|
||||||
"MIT"
|
|
||||||
],
|
|
||||||
"authors": [
|
|
||||||
{
|
|
||||||
"name": "Nicolas Grekas",
|
|
||||||
"email": "p@tchwork.com"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Symfony Community",
|
|
||||||
"homepage": "https://symfony.com/contributors"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"description": "Symfony polyfill for the Mbstring extension",
|
|
||||||
"homepage": "https://symfony.com",
|
|
||||||
"keywords": [
|
|
||||||
"compatibility",
|
|
||||||
"mbstring",
|
|
||||||
"polyfill",
|
|
||||||
"portable",
|
|
||||||
"shim"
|
|
||||||
],
|
|
||||||
"support": {
|
|
||||||
"source": "https://github.com/symfony/polyfill-mbstring/tree/main"
|
|
||||||
},
|
|
||||||
"funding": [
|
|
||||||
{
|
|
||||||
"url": "https://symfony.com/sponsor",
|
|
||||||
"type": "custom"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"url": "https://github.com/fabpot",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
|
||||||
"type": "tidelift"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"time": "2022-05-24T11:49:31+00:00"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "symfony/process",
|
|
||||||
"version": "3.4.x-dev",
|
|
||||||
"source": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/symfony/process.git",
|
|
||||||
"reference": "b8648cf1d5af12a44a51d07ef9bf980921f15fca"
|
|
||||||
},
|
|
||||||
"dist": {
|
|
||||||
"type": "zip",
|
|
||||||
"url": "https://api.github.com/repos/symfony/process/zipball/b8648cf1d5af12a44a51d07ef9bf980921f15fca",
|
|
||||||
"reference": "b8648cf1d5af12a44a51d07ef9bf980921f15fca",
|
|
||||||
"shasum": ""
|
|
||||||
},
|
|
||||||
"require": {
|
|
||||||
"php": "^5.5.9|>=7.0.8"
|
|
||||||
},
|
|
||||||
"type": "library",
|
|
||||||
"autoload": {
|
|
||||||
"psr-4": {
|
|
||||||
"Symfony\\Component\\Process\\": ""
|
|
||||||
},
|
|
||||||
"exclude-from-classmap": [
|
|
||||||
"/Tests/"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"notification-url": "https://packagist.org/downloads/",
|
|
||||||
"license": [
|
|
||||||
"MIT"
|
|
||||||
],
|
|
||||||
"authors": [
|
|
||||||
{
|
|
||||||
"name": "Fabien Potencier",
|
|
||||||
"email": "fabien@symfony.com"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Symfony Community",
|
|
||||||
"homepage": "https://symfony.com/contributors"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"description": "Symfony Process Component",
|
|
||||||
"homepage": "https://symfony.com",
|
|
||||||
"support": {
|
|
||||||
"source": "https://github.com/symfony/process/tree/3.4"
|
|
||||||
},
|
|
||||||
"funding": [
|
|
||||||
{
|
|
||||||
"url": "https://symfony.com/sponsor",
|
|
||||||
"type": "custom"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"url": "https://github.com/fabpot",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
|
||||||
"type": "tidelift"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"time": "2020-10-24T10:57:07+00:00"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "wikimedia/at-ease",
|
|
||||||
"version": "v2.0.0",
|
|
||||||
"source": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/wikimedia/at-ease.git",
|
|
||||||
"reference": "013ac61929797839c80a111a3f1a4710d8248e7a"
|
|
||||||
},
|
|
||||||
"dist": {
|
|
||||||
"type": "zip",
|
|
||||||
"url": "https://api.github.com/repos/wikimedia/at-ease/zipball/013ac61929797839c80a111a3f1a4710d8248e7a",
|
|
||||||
"reference": "013ac61929797839c80a111a3f1a4710d8248e7a",
|
|
||||||
"shasum": ""
|
|
||||||
},
|
|
||||||
"require": {
|
|
||||||
"php": ">=5.6.99"
|
|
||||||
},
|
|
||||||
"require-dev": {
|
|
||||||
"jakub-onderka/php-console-highlighter": "0.3.2",
|
|
||||||
"jakub-onderka/php-parallel-lint": "1.0.0",
|
|
||||||
"mediawiki/mediawiki-codesniffer": "22.0.0",
|
|
||||||
"mediawiki/minus-x": "0.3.1",
|
|
||||||
"ockcyp/covers-validator": "0.5.1 || 0.6.1",
|
|
||||||
"phpunit/phpunit": "4.8.36 || ^6.5"
|
|
||||||
},
|
|
||||||
"type": "library",
|
|
||||||
"autoload": {
|
|
||||||
"files": [
|
|
||||||
"src/Wikimedia/Functions.php"
|
|
||||||
],
|
|
||||||
"psr-4": {
|
|
||||||
"Wikimedia\\AtEase\\": "src/Wikimedia/AtEase/"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"notification-url": "https://packagist.org/downloads/",
|
|
||||||
"license": [
|
|
||||||
"GPL-2.0-or-later"
|
|
||||||
],
|
|
||||||
"authors": [
|
|
||||||
{
|
|
||||||
"name": "Tim Starling",
|
|
||||||
"email": "tstarling@wikimedia.org"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "MediaWiki developers",
|
|
||||||
"email": "wikitech-l@lists.wikimedia.org"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"description": "Safe replacement to @ for suppressing warnings.",
|
|
||||||
"homepage": "https://www.mediawiki.org/wiki/at-ease",
|
|
||||||
"support": {
|
|
||||||
"source": "https://github.com/wikimedia/at-ease/tree/master"
|
|
||||||
},
|
|
||||||
"time": "2018-10-10T15:39:06+00:00"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"aliases": [],
|
|
||||||
"minimum-stability": "dev",
|
|
||||||
"stability-flags": [],
|
|
||||||
"prefer-stable": false,
|
|
||||||
"prefer-lowest": false,
|
|
||||||
"platform": [],
|
|
||||||
"platform-dev": [],
|
|
||||||
"platform-overrides": {
|
|
||||||
"php": "7.2"
|
|
||||||
},
|
|
||||||
"plugin-api-version": "2.3.0"
|
|
||||||
}
|
|
|
@ -1,14 +0,0 @@
|
||||||
{
|
|
||||||
"root": "packages/js/style-build",
|
|
||||||
"sourceRoot": "packages/js/style-build/src",
|
|
||||||
"projectType": "library",
|
|
||||||
"targets": {
|
|
||||||
"changelog": {
|
|
||||||
"executor": "./tools/executors/changelogger:changelog",
|
|
||||||
"options": {
|
|
||||||
"action": "add",
|
|
||||||
"cwd": "packages/js/style-build"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -2,7 +2,7 @@
|
||||||
* External dependencies
|
* External dependencies
|
||||||
*/
|
*/
|
||||||
import { render, screen, fireEvent } from '@testing-library/react';
|
import { render, screen, fireEvent } from '@testing-library/react';
|
||||||
import { getByTextWithMarkup } from '@woocommerce/js-tests';
|
import { getByTextWithMarkup } from '@woocommerce/internal-js-tests';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Internal dependencies
|
* Internal dependencies
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
module.exports = {
|
module.exports = {
|
||||||
rootDir: './',
|
rootDir: './',
|
||||||
preset: '../../../packages/js/js-tests/jest.config.js',
|
preset: '../../../packages/js/internal-js-tests/jest.config.js',
|
||||||
globals: {
|
globals: {
|
||||||
'ts-jest': {
|
'ts-jest': {
|
||||||
diagnostics: {
|
diagnostics: {
|
||||||
|
|
|
@ -25,7 +25,7 @@ import {
|
||||||
withOptionsHydration,
|
withOptionsHydration,
|
||||||
} from '@woocommerce/data';
|
} from '@woocommerce/data';
|
||||||
import { recordPageView } from '@woocommerce/tracks';
|
import { recordPageView } from '@woocommerce/tracks';
|
||||||
import '@woocommerce/notices';
|
import '@woocommerce/internal-notices';
|
||||||
import { PluginArea } from '@wordpress/plugins';
|
import { PluginArea } from '@wordpress/plugins';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -42,7 +42,7 @@
|
||||||
"start": "pnpm run install-if-deps-outdated && cross-env WC_ADMIN_PHASE=development pnpm run build:packages && cross-env WC_ADMIN_PHASE=development pnpm run build:feature-config && concurrently \"cross-env WC_ADMIN_PHASE=development webpack --watch\" \"cross-env WC_ADMIN_PHASE=development pnpm run:packages -- start --parallel\"",
|
"start": "pnpm run install-if-deps-outdated && cross-env WC_ADMIN_PHASE=development pnpm run build:packages && cross-env WC_ADMIN_PHASE=development pnpm run build:feature-config && concurrently \"cross-env WC_ADMIN_PHASE=development webpack --watch\" \"cross-env WC_ADMIN_PHASE=development pnpm run:packages -- start --parallel\"",
|
||||||
"start:package": "pnpm run:packages -- start --parallel",
|
"start:package": "pnpm run:packages -- start --parallel",
|
||||||
"pretest": "pnpm run -s install-if-no-packages",
|
"pretest": "pnpm run -s install-if-no-packages",
|
||||||
"test": "pnpm nx build @woocommerce/js-tests && pnpm run test:client",
|
"test": "pnpm nx build @woocommerce/internal-js-tests && pnpm run test:client",
|
||||||
"test-staged": "pnpm run test:client -- --bail --findRelatedTests",
|
"test-staged": "pnpm run test:client -- --bail --findRelatedTests",
|
||||||
"test:client": "jest --config client/jest.config.js",
|
"test:client": "jest --config client/jest.config.js",
|
||||||
"test:debug": "node --inspect-brk ./node_modules/.bin/jest --config client/jest.config.js --watch --runInBand --no-cache",
|
"test:debug": "node --inspect-brk ./node_modules/.bin/jest --config client/jest.config.js --watch --runInBand --no-cache",
|
||||||
|
@ -147,12 +147,12 @@
|
||||||
"@woocommerce/eslint-plugin": "workspace:*",
|
"@woocommerce/eslint-plugin": "workspace:*",
|
||||||
"@woocommerce/experimental": "workspace:*",
|
"@woocommerce/experimental": "workspace:*",
|
||||||
"@woocommerce/explat": "workspace:*",
|
"@woocommerce/explat": "workspace:*",
|
||||||
"@woocommerce/js-tests": "workspace:*",
|
"@woocommerce/internal-js-tests": "workspace:*",
|
||||||
"@woocommerce/navigation": "workspace:*",
|
"@woocommerce/navigation": "workspace:*",
|
||||||
"@woocommerce/notices": "workspace:*",
|
"@woocommerce/internal-notices": "workspace:*",
|
||||||
"@woocommerce/number": "workspace:*",
|
"@woocommerce/number": "workspace:*",
|
||||||
"@woocommerce/onboarding": "workspace:*",
|
"@woocommerce/onboarding": "workspace:*",
|
||||||
"@woocommerce/style-build": "workspace:*",
|
"@woocommerce/internal-style-build": "workspace:*",
|
||||||
"@woocommerce/tracks": "workspace:*",
|
"@woocommerce/tracks": "workspace:*",
|
||||||
"@wordpress/babel-preset-default": "^6.5.1",
|
"@wordpress/babel-preset-default": "^6.5.1",
|
||||||
"@wordpress/browserslist-config": "^4.1.1",
|
"@wordpress/browserslist-config": "^4.1.1",
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue