-
Notifications
You must be signed in to change notification settings - Fork 350
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into melpp-spike-two-column
- Loading branch information
Showing
97 changed files
with
1,691 additions
and
764 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,8 +31,10 @@ jobs: | |
id: match | ||
with: | ||
changed-files: ${{ steps.changed.outputs.files }} | ||
files: packages/ # Only look for changes in packages | ||
globs: "!(**/__tests__/*), !(**/__stories__/*), !(**/dist/*)" # Ignore test files | ||
files: "packages/, config/build/" # Only look for changes in packages, build | ||
globs: "!(**/__tests__/*), !(**/__testdata__/*), !(**/__stories__/*), !(**/dist/*)" # Ignore test files | ||
matchAllGlobs: true # Default is to match any of the globs, which ends up matching all files | ||
conjunctive: true # Only match files that match all of the above | ||
|
||
- name: Verify changeset entries | ||
uses: Khan/[email protected] | ||
|
@@ -292,7 +294,12 @@ jobs: | |
|
||
- name: Calculate short SHA for this commit | ||
id: short-sha | ||
run: echo "short_sha=$(echo ${GITHUB_SHA} | cut -c1-8)" >> $GITHUB_OUTPUT | ||
# Why not GITHUB_SHA here? Because that is the last merge-commit | ||
# for the PR (ie. the ephemeral commit that Github creates for | ||
# each PR merging the base branch into the pull request HEAD) for | ||
# Github Action runs). We want to reference the commit that was | ||
# pushed, not this ephemeral commit. | ||
run: echo "short_sha=$(echo ${{ github.event.pull_request.head.sha }} | cut -c1-8)" >> $GITHUB_OUTPUT | ||
|
||
# Note: these two actions are locked to the latest version that were | ||
# published when I created this yml file (just for security). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "perseus-build-settings", | ||
"version": "0.2.0", | ||
"version": "0.2.1", | ||
"license": "MIT", | ||
"private": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
export {libVersion} from "./version"; | ||
|
||
export * from "./nodes"; | ||
export {compare} from "./compare"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// This file is processed by a Rollup plugin (replace) to inject the production | ||
// version number during the release build. | ||
// In dev, you'll never see the version number. | ||
|
||
import {addLibraryVersionToPerseusDebug} from "@khanacademy/perseus-core"; | ||
|
||
const libName = "@khanacademy/kas"; | ||
export const libVersion = "__lib_version__"; | ||
|
||
addLibraryVersionToPerseusDebug(libName, libVersion); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// This file is processed by a Rollup plugin (replace) to inject the production | ||
// version number during the release build. | ||
// In dev, you'll never see the version number. | ||
|
||
import {addLibraryVersionToPerseusDebug} from "@khanacademy/perseus-core"; | ||
|
||
const libName = "@khanacademy/kmath"; | ||
export const libVersion = "__lib_version__"; | ||
|
||
addLibraryVersionToPerseusDebug(libName, libVersion); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
"description": "Khan Academy's new expression editor for the mobile web.", | ||
"author": "Khan Academy", | ||
"license": "MIT", | ||
"version": "13.1.0", | ||
"version": "14.1.1", | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
|
@@ -20,7 +20,7 @@ | |
"source": "src/index.ts", | ||
"scripts": {}, | ||
"dependencies": { | ||
"@khanacademy/perseus-core": "1.1.0", | ||
"@khanacademy/perseus-core": "1.1.2", | ||
"mathquill": "git+https://[email protected]/Khan/mathquill.git#32d9f351aaa68537170b3120a52e99b8def3a2c3", | ||
"performance-now": "^0.2.0" | ||
}, | ||
|
@@ -34,7 +34,7 @@ | |
"aphrodite": "^1.1.0", | ||
"jquery": "^2.1.1", | ||
"katex": "^0.11.1", | ||
"perseus-build-settings": "^0.2.0", | ||
"perseus-build-settings": "^0.2.1", | ||
"prop-types": "15.6.1", | ||
"react": "^16.8.0", | ||
"react-dom": "^16.8.0", | ||
|
Oops, something went wrong.