blob: a7b4f18d70168114bbc8e536c039c38042b90527 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/sh
set -euo pipefail
# Cleans all release and build artifacts
npm run build:clean
npm run release:clean
npm ci
npm run authors:check
npm test
# Clone dist and cdn repos to the tmp/release directory
mkdir -p tmp/release
git clone https://github.com/jquery/jquery-dist tmp/release/dist
git clone https://github.com/jquery/codeorigin.jquery.com tmp/release/cdn
|