first commit

This commit is contained in:
s2
2024-12-13 08:53:01 +01:00
commit 2746dc9c4e
5477 changed files with 682458 additions and 0 deletions

24
node_modules/i18next-xhr-backend/.circleci/config.yml generated vendored Normal file
View File

@@ -0,0 +1,24 @@
version: 2
jobs:
build:
docker:
- image: circleci/node:latest-browsers
environment:
CHROME_BIN: '/usr/bin/google-chrome'
steps:
- checkout
- run:
name: update-npm
command: 'sudo npm install -g npm@6'
- restore_cache:
key: dependency-cache-{{ checksum "package.json" }}
- run:
name: install-npm-wee
command: npm install
- save_cache:
key: dependency-cache-{{ checksum "package.json" }}
paths:
- ./node_modules
- run:
name: test
command: npm test