8000 4.0 build system by patrickarlt · Pull Request #911 · Esri/arcgis-rest-js · GitHub
[go: up one dir, main page]

Skip to content

4.0 build system #911

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 58 commits into from
Oct 4, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
58 commits
Select commit Hold shift + click to select a range
1f3be28
4.0 build system WIP
patrickarlt Sep 5, 2021
a4840ff
merge
patrickarlt Sep 5, 2021
4358363
working build system
patrickarlt Sep 7, 2021
6c4a91d
wip
patrickarlt Sep 7, 2021
3f021a0
co
patrickarlt Sep 7, 2021
cd5d7b7
add fetch package
patrickarlt Sep 7, 2021
1503252
wip
patrickarlt Sep 7, 2021
3a88f72
remove typedoc
patrickarlt Sep 7, 2021
6b85c69
more cleanup
patrickarlt Sep 7, 2021
063617b
remove package locks
patrickarlt Sep 7, 2021
2050f8e
restore typedoc
patrickarlt Sep 7, 2021
c094402
continue cleanup
patrickarlt Sep 7, 2021
27cfeb9
remove old ts-helper for node tests
patrickarlt Sep 7, 2021
b666f63
remove old ts-helper for node tests
patrickarlt Sep 7, 2021
09cf5cc
update engine
patrickarlt Sep 7, 2021
f3b61dd
delete lerna.json
patrickarlt Sep 7, 2021
37cdcda
continue cleanup
patrickarlt Sep 7, 2021
c21711e
Use node-fetch 3.0, fix rollup
patrickarlt Sep 8, 2021
e7ae725
updates to webpack and rollup, add files
patrickarlt Sep 8, 2021
9e8d4cf
Update demos/node-common-js/package.json
patrickarlt Sep 8, 2021
6be7f27
Update package-lock.json
noahmulfinger Sep 9, 2021
1b8edf9
rollup support
patrickarlt Sep 9, 2021
4df1a18
more rollup fixing
patrickarlt Sep 9, 2021
02a1769
clean up
patrickarlt Sep 9, 2021
232b4c9
Merge branch '4.0-build-system' of github.com:Esri/arcgis-rest-js int…
patrickarlt Sep 9, 2021
6ea23d6
revert linting
patrickarlt Sep 9, 2021
b264a72
rollup specific builds
patrickarlt Sep 9, 2021
9cf5763
add wrapper around node-fetch
patrickarlt Sep 9, 2021
1da8715
More WIP
patrickarlt Sep 10, 2021
54f48af
chrome debugging
patrickarlt Sep 10, 2021
63fa944
cleanup skypack check, fix intermittantly failing test
patrickarlt Sep 10, 2021
4a5a64a
Merge branch 'v4.0' into 4.0-build-system
patrickarlt Sep 10, 2021
b802d80
migrate @esri/arcgis-rest-auth, fix browser auth test
patrickarlt Sep 11, 2021
60029d7
auth demo
patrickarlt Sep 11, 2021
3c1e755
migrate portal, service admin and routing
patrickarlt Sep 12, 2021
d52a305
migrate all packages
patrickarlt Sep 12, 2021
2fc29e4
cleanup package.jsons
patrickarlt Sep 13, 2021
e34fa11
attachments demo
patrickarlt Sep 13, 2021
910ae0f
more demo work
patrickarlt Sep 13, 2021
8c58d3d
fix spelling of Vernonia
patrickarlt Sep 13, 2021
d3d6ae5
wrap up demos
patrickarlt Sep 13, 2021
792fe3c
more demos
patrickarlt Sep 14, 2021
8435faa
use import/export type, ultra runner, better rollup
patrickarlt Sep 14, 2021
cd0ab49
format package.jsons
patrickarlt Sep 14, 2021
6c23e01
update actions
patrickarlt Sep 14, 2021
62c9780
fix build script
patrickarlt Sep 14, 2021
766ed16
fix tests, add file attachment node demo, remove data for file/text i…
patrickarlt Sep 14, 2021
1936f6a
use npm 7 in GitHub actions
patrickarlt Sep 14, 2021
dd0a99c
fix build
patrickarlt Sep 14, 2021
0cd5959
upgrade npm in actions
patrickarlt Sep 14, 2021
cfc76cb
fix tests
patrickarlt Sep 14, 2021
8459553
don't fail fast on tests
patrickarlt Sep 14, 2021
2594b60
don't fail fast on tests
patrickarlt Sep 14, 2021
10000
a6f820c
sass
patrickarlt Sep 15, 2021
b194a5c
fix tests
patrickarlt Sep 15, 2021
24ba0a8
deno demo, cleanup
patrickarlt Sep 24, 2021
d1863fc
final cleanup
patrickarlt Sep 24, 2021
d2af66f
fix tests in windows, cleanup test deprecations
patrickarlt Sep 28, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
use npm 7 in GitHub actions
  • Loading branch information
patrickarlt committed Sep 14, 2021
commit 1936f6a7e7f5fbbdba94d525463370d17c767495
3 changes: 3 additions & 0 deletions .github/workflows/pre-release-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ jobs:
with:
node-version: ${{ matrix.node }}

- name: Update to NPM 7 for workspace support
run: npm install -g npm@7

- name: Install Dependencies
run: npm install

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/pull-request-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ jobs:
with:
node-version: ${{ matrix.node }}

- name: Update to NPM 7 for workspace support
run: npm install -g npm@7

- name: Install Dependencies
run: npm install

Expand Down
0