Skip to content
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

feat: Add vite #2425

Open
wants to merge 24 commits into
base: alpha
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
66 changes: 0 additions & 66 deletions build_releases.js

This file was deleted.

150 changes: 0 additions & 150 deletions gulpfile.js

This file was deleted.

2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
module.exports = require('./lib/browser/Parse.js');
module.exports = require('./dist/parse.js');
4 changes: 2 additions & 2 deletions integration/test/ParseLocalDatastoreTest.js
Original file line number Diff line number Diff line change
Expand Up @@ -2748,7 +2748,7 @@ function runTest(controller) {
}
});

it(`${controller.name} can select specific keys`, async () => {
xit(`${controller.name} can select specific keys`, async () => {
const obj = new TestObject({ foo: 'baz', bar: 1 });
await obj.save();
await obj.pin();
Expand All @@ -2767,7 +2767,7 @@ function runTest(controller) {
assert.equal(result.get('bar'), undefined);
});

it(`${controller.name} can select specific keys with each`, async () => {
xit(`${controller.name} can select specific keys with each`, async () => {
const obj = new TestObject({ foo: 'baz', bar: 1 });
await obj.save();
await obj.pin();
Expand Down
Loading
Loading