forked from WordPress/gutenberg
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathv2-packages.js
More file actions
115 lines (114 loc) · 2.06 KB
/
v2-packages.js
File metadata and controls
115 lines (114 loc) · 2.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
/**
* List of packages that use the v2 build pipeline.
* These packages are built with bin/packages/build-v2.mjs instead of
* the traditional Babel/webpack pipeline.
*
* @type {string[]}
*/
const V2_PACKAGES = [
'a11y',
'admin-ui',
'annotations',
'api-fetch',
'autop',
'babel-plugin-import-jsx-pragma',
'babel-plugin-makepot',
'babel-preset-default',
'base-styles',
'blob',
'block-directory',
'block-editor',
'block-library',
'block-serialization-default-parser',
'block-serialization-spec-parser',
'blocks',
'browserslist-config',
'commands',
'components',
'compose',
'core-commands',
'core-data',
'create-block',
'create-block-interactive-template',
'create-block-tutorial-template',
'customize-widgets',
'data',
'data-controls',
'date',
'dataviews',
'dependency-extraction-webpack-plugin',
'deprecated',
'docgen',
'dom',
'dom-ready',
'e2e-tests',
'e2e-test-utils',
'e2e-test-utils-playwright',
'edit-post',
'edit-site',
'edit-widgets',
'element',
'editor',
'env',
'escape-html',
'eslint-plugin',
'fields',
'format-library',
'hooks',
'html-entities',
'i18n',
'icons',
'interactivity',
'interactivity-router',
'interface',
'is-shallow-equal',
'jest-console',
'jest-preset-default',
'jest-puppeteer-axe',
'keyboard-shortcuts',
'keycodes',
'lazy-import',
'list-reusable-blocks',
'media-utils',
'notices',
'npm-package-json-lint-config',
'nux',
'patterns',
'plugins',
'postcss-plugins-preset',
'postcss-themes',
'preferences',
'preferences-persistence',
'prettier-config',
'primitives',
'priority-queue',
'private-apis',
'project-management-automation',
'react-i18n',
'react-native-aztec',
'react-native-bridge',
'react-native-editor',
'readable-js-assets-webpack-plugin',
'redux-routine',
'report-flaky-tests',
'reusable-blocks',
'rich-text',
'router',
'scripts',
'server-side-render',
'shortcode',
'style-engine',
'stylelint-config',
'sync',
'token-list',
'undo-manager',
'upload-media',
'url',
'viewport',
'vips',
'views',
'warning',
'widgets',
'wordcount',
];
module.exports = { V2_PACKAGES };