Skip to content
GitLab
    • Explore Projects Groups Snippets
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
  • C create-react-app
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 1,547
    • Issues 1,547
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 417
    • Merge requests 417
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Package Registry
    • Infrastructure Registry
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • Meta
  • create-react-app
  • Merge requests
  • !12108
An error occurred while fetching the assigned milestone of the selected merge_request.

[LEOP-317]Backpack-addons README

  • Review changes

  • Download
  • Email patches
  • Plain diff
Closed Administrator requested to merge github/fork/Skyscanner/backpack-addons-readme into main 3 years ago
  • Overview 1
  • Commits 23
  • Pipelines 0
  • Changes 43

Created by: salleyliu

perfect README.md file

  • Supplementary complete Table
  • Add how-to add new feature
  • Add How to upgrade from the upstream facebook/create-react-app repo
Compare
  • main (base)

and
  • latest version
    9ad96f75
    23 commits, 2 years ago

43 files
+ 2807
- 467

    Preferences

    File browser
    Compare changes
.github/‎workflows‎
build-‎brs.yml‎ +50 -0
buil‎d.yml‎ +12 -1
lint‎.yml‎ +12 -1
pack‎ages‎
babel-plugin-na‎med-asset-import‎
packag‎e.json‎ +1 -0
babel-prese‎t-react-app‎
packag‎e.json‎ +1 -0
confusing-br‎owser-globals‎
packag‎e.json‎ +1 -0
cra-te‎mplate‎
packag‎e.json‎ +1 -0
cra-templat‎e-typescript‎
packag‎e.json‎ +1 -0
create-r‎eact-app‎
packag‎e.json‎ +1 -0
eslint-conf‎ig-react-app‎
packag‎e.json‎ +1 -0
react-app‎-polyfill‎
packag‎e.json‎ +1 -0
react-d‎ev-utils‎
packag‎e.json‎ +1 -0
react-err‎or-overlay‎
packag‎e.json‎ +1 -0
react-‎scripts‎
backpac‎k-addons‎
READ‎ME.md‎ +33 -0
babelInclud‎ePrefixes.js‎ +25 -0
crossOrigi‎nLoading.js‎ +11 -0
cssMod‎ules.js‎ +67 -0
ignoreCssW‎arnings.js‎ +10 -0
sriEna‎bled.js‎ +21 -0
con‎fig‎
css.‎html‎ +5 -0
js.‎html‎ +3 -0
path‎s.js‎ +7 -0
webpack.‎config.js‎ +242 -60
webpack.co‎nfig.ssr.js‎ +985 -0
do‎cs‎
migrating-fro‎m-v6-to-v7.md‎ +181 -0
migrating-fro‎m-v7-to-v8.md‎ +83 -0
migrating-fro‎m-v8-to-v9.md‎ +40 -0
updatin‎g-brs.md‎ +81 -0
scr‎ipts‎
ut‎ils‎
createJes‎tConfig.js‎ +21 -5
verifyPack‎ageTree.js‎ +0 -2
buil‎d.js‎ +34 -1
ini‎t.js‎ +19 -15
ut‎ils‎
getCSSModuleLocalIde‎ntWithProjectName.js‎ +22 -0
sassFun‎ction.js‎ +9 -0
CHANGE‎LOG.md‎ +617 -0
READ‎ME.md‎ +33 -5
packag‎e.json‎ +18 -24
ta‎sks‎
e2e-ins‎talls.sh‎ +98 -88
e2e-kitch‎ensink.sh‎ +1 -1
e2e-si‎mple.sh‎ +44 -44
local-re‎gistry.sh‎ +1 -1
publi‎sh.sh‎ +5 -4
READ‎ME.md‎ +7 -215
.github/workflows/build-brs.yml 0 → 100644
+ 50
- 0
  • View file @ 9ad96f75

name: Build BRS
on:
push:
branches: [fork]
pull_request:
branches: [fork]
defaults:
run:
shell: bash -l {0}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: 14.x
- name: Run simple
run: |
tasks/e2e-simple.sh
- name: Run Installs
run: |
tasks/e2e-installs.sh
## For now we don't need to worry about Kitchensink as this is also failing upstream and the functions is executes are not relevant
# - name: Run Kitchensink
# shell: bash -l {0}
# run: |
# nvm use lts/erbium
# tasks/e2e-kitchensink.sh
# - name: Run Kitchensink Eject
# shell: bash -l {0}
# run: |
# nvm use lts/erbium
# tasks/e2e-kitchensink-eject.sh
# - name: Run Behaviour
# shell: bash -l {0}
# run: |
# nvm use lts/erbium
# tasks/e2e-behavior.sh
.github/workflows/build.yml
+ 12
- 1
  • View file @ 9ad96f75

name: Build
on: [push]
on:
push:
branches: [fork]
pull_request:
branches: [fork]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: 14.x
- name: Install
run: yarn --no-progress --non-interactive --no-lockfile
- name: Build
run: yarn build
.github/workflows/lint.yml
+ 12
- 1
  • View file @ 9ad96f75

name: Lint
on: [push]
on:
push:
branches: [fork]
pull_request:
branches: [fork]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: 14.x
- name: Install
run: yarn --no-progress --non-interactive --no-lockfile
- name: Alex
run: yarn alex
packages/babel-plugin-named-asset-import/package.json
+ 1
- 0
  • View file @ 9ad96f75


{
"name": "babel-plugin-named-asset-import",
"version": "0.3.7",
"private": true,
"description": "Babel plugin for named asset imports in Create React App",
"repository": {
"type": "git",
packages/babel-preset-react-app/package.json
+ 1
- 0
  • View file @ 9ad96f75


{
"name": "babel-preset-react-app",
"version": "10.0.0",
"private": true,
"description": "Babel preset used by Create React App",
"repository": {
"type": "git",
0 Assignees
None
Assign to
0 Reviewers
None
Request review from
Labels
0
None
0
None
    Assign labels
  • Manage project labels

Milestone
No milestone
None
None
Time tracking
No estimate or time spent
Lock merge request
Unlocked
0
0 participants
Reference:
Source branch: github/fork/Skyscanner/backpack-addons-readme

Menu

Explore Projects Groups Snippets