pxt-core 7.5.28 → 7.5.31

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/built/pxt.js CHANGED
@@ -109696,105 +109696,6 @@ _site
109696
109696
  "**/pxt_modules": true
109697
109697
  }
109698
109698
  }`,
109699
- ".github/workflows/makecode.yml": `name: MakeCode
109700
-
109701
- on: [push]
109702
-
109703
- jobs:
109704
- build:
109705
-
109706
- runs-on: ubuntu-latest
109707
-
109708
- strategy:
109709
- matrix:
109710
- node-version: [14.x]
109711
-
109712
- steps:
109713
- - uses: actions/checkout@v1
109714
- - name: Use Node.js $\{{ matrix.node-version }}
109715
- uses: actions/setup-node@v1
109716
- with:
109717
- node-version: $\{{ matrix.node-version }}
109718
- - name: npm install
109719
- run: |
109720
- npm install -g pxt
109721
- pxt target @TARGET@
109722
- - name: build
109723
- run: |
109724
- pxt install
109725
- pxt build --cloud
109726
- env:
109727
- CI: true
109728
- `,
109729
- ".github/workflows/cfg-check.yml": `name: Check pxt.json
109730
-
109731
- on:
109732
- push:
109733
- branches:
109734
- - 'master'
109735
- - 'main'
109736
-
109737
- jobs:
109738
- check-cfg:
109739
- runs-on: ubuntu-latest
109740
- strategy:
109741
- matrix:
109742
- node-version: [14.x]
109743
- steps:
109744
- - uses: actions/checkout@v2
109745
- - name: Use Node.js $\{{ matrix.node-version }}
109746
- uses: actions/setup-node@v1
109747
- with:
109748
- node-version: $\{{ matrix.node-version }}
109749
- - name: npm install
109750
- run: |
109751
- npm install -g pxt
109752
- pxt target @TARGET@
109753
- - name: Checkout current state
109754
- run: |
109755
- git checkout -- .
109756
- git clean -fd
109757
- - name: Fix files listed in config if necessary
109758
- run: pxt checkpkgcfg
109759
- - name: Create Pull Request
109760
- uses: peter-evans/create-pull-request@v3
109761
- continue-on-error: true
109762
- with:
109763
- title: 'Removing missing files from pxt.json'
109764
- commit-message: 'Removing missing files from pxt.json'
109765
- delete-branch: true
109766
- `,
109767
- ".vscode/tasks.json": `
109768
- // A task runner that calls the MakeCode (PXT) compiler
109769
- {
109770
- "version": "2.0.0",
109771
- "tasks": [{
109772
- "label": "pxt deploy",
109773
- "type": "shell",
109774
- "command": "pxt deploy --local",
109775
- "group": "build",
109776
- "problemMatcher": [ "$tsc" ]
109777
- }, {
109778
- "label": "pxt build",
109779
- "type": "shell",
109780
- "command": "pxt build --local",
109781
- "group": "build",
109782
- "problemMatcher": [ "$tsc" ]
109783
- }, {
109784
- "label": "pxt install",
109785
- "type": "shell",
109786
- "command": "pxt install",
109787
- "group": "build",
109788
- "problemMatcher": [ "$tsc" ]
109789
- }, {
109790
- "label": "pxt clean",
109791
- "type": "shell",
109792
- "command": "pxt clean",
109793
- "group": "test",
109794
- "problemMatcher": [ "$tsc" ]
109795
- }]
109796
- }
109797
- `
109798
109699
  };
109799
109700
  // override files from target
109800
109701
  const overrides = targetTemplateFiles();
package/built/pxtlib.js CHANGED
@@ -12010,105 +12010,6 @@ _site
12010
12010
  "**/pxt_modules": true
12011
12011
  }
12012
12012
  }`,
12013
- ".github/workflows/makecode.yml": `name: MakeCode
12014
-
12015
- on: [push]
12016
-
12017
- jobs:
12018
- build:
12019
-
12020
- runs-on: ubuntu-latest
12021
-
12022
- strategy:
12023
- matrix:
12024
- node-version: [14.x]
12025
-
12026
- steps:
12027
- - uses: actions/checkout@v1
12028
- - name: Use Node.js $\{{ matrix.node-version }}
12029
- uses: actions/setup-node@v1
12030
- with:
12031
- node-version: $\{{ matrix.node-version }}
12032
- - name: npm install
12033
- run: |
12034
- npm install -g pxt
12035
- pxt target @TARGET@
12036
- - name: build
12037
- run: |
12038
- pxt install
12039
- pxt build --cloud
12040
- env:
12041
- CI: true
12042
- `,
12043
- ".github/workflows/cfg-check.yml": `name: Check pxt.json
12044
-
12045
- on:
12046
- push:
12047
- branches:
12048
- - 'master'
12049
- - 'main'
12050
-
12051
- jobs:
12052
- check-cfg:
12053
- runs-on: ubuntu-latest
12054
- strategy:
12055
- matrix:
12056
- node-version: [14.x]
12057
- steps:
12058
- - uses: actions/checkout@v2
12059
- - name: Use Node.js $\{{ matrix.node-version }}
12060
- uses: actions/setup-node@v1
12061
- with:
12062
- node-version: $\{{ matrix.node-version }}
12063
- - name: npm install
12064
- run: |
12065
- npm install -g pxt
12066
- pxt target @TARGET@
12067
- - name: Checkout current state
12068
- run: |
12069
- git checkout -- .
12070
- git clean -fd
12071
- - name: Fix files listed in config if necessary
12072
- run: pxt checkpkgcfg
12073
- - name: Create Pull Request
12074
- uses: peter-evans/create-pull-request@v3
12075
- continue-on-error: true
12076
- with:
12077
- title: 'Removing missing files from pxt.json'
12078
- commit-message: 'Removing missing files from pxt.json'
12079
- delete-branch: true
12080
- `,
12081
- ".vscode/tasks.json": `
12082
- // A task runner that calls the MakeCode (PXT) compiler
12083
- {
12084
- "version": "2.0.0",
12085
- "tasks": [{
12086
- "label": "pxt deploy",
12087
- "type": "shell",
12088
- "command": "pxt deploy --local",
12089
- "group": "build",
12090
- "problemMatcher": [ "$tsc" ]
12091
- }, {
12092
- "label": "pxt build",
12093
- "type": "shell",
12094
- "command": "pxt build --local",
12095
- "group": "build",
12096
- "problemMatcher": [ "$tsc" ]
12097
- }, {
12098
- "label": "pxt install",
12099
- "type": "shell",
12100
- "command": "pxt install",
12101
- "group": "build",
12102
- "problemMatcher": [ "$tsc" ]
12103
- }, {
12104
- "label": "pxt clean",
12105
- "type": "shell",
12106
- "command": "pxt clean",
12107
- "group": "test",
12108
- "problemMatcher": [ "$tsc" ]
12109
- }]
12110
- }
12111
- `
12112
12013
  };
12113
12014
  // override files from target
12114
12015
  const overrides = targetTemplateFiles();