Giter Site home page Giter Site logo

Comments (4)

DSchroer avatar DSchroer commented on August 14, 2024

The change was introduced in e1449de.

from nodesdk.

najadojo avatar najadojo commented on August 14, 2024

Please this address this issue it makes this not usable with TypeScript.

from nodesdk.

lazerwalker avatar lazerwalker commented on August 14, 2024

For anyone else running into this, I have a (hacky) workaround

Because this repo has a valid copy of the SDK, we can theoretically point npm at this repo instead of the copy of the module that lives on npm's servers.

However, because the actual npm package code lives in the PlayFabSdk subdirectory instead of the root of this git repo, you can't just point npm at this git repo.

Instead of directly listing this in your package.json dependencies, add this postinstall script to your package.json file.

scripts: {
    "postinstall": "mkdir playfab-sdk; cd playfab-sdk; git init; git remote add -f origin https://github.com/PlayFab/NodeSDK.git; git config core.sparseCheckout true; echo \"PlayFabSddkK\" >> .git/info/sparse-checkout; git pull --depth=1 origin master; cd ..; npm i ./playfab-sdk/PlayFabSdk/"
    ...
}

Short version: this creates a playfab-sdk folder in the root of your project, which contains a clone of this git repo that JUST has the PlayFabSdk subdirectory. From there, it installs the npm module located in that local folder, which will be the valid package located at https://github.com/PlayFab/NodeSDK/tree/master/PlayFabSdk.

Obviously a temporary solution, but for now this is working great for me.

Presumably, pegging your package.json to an older version of the lib would work as well, but I haven't gone through to figure out what the most recent still-functioning version is.

from nodesdk.

pgilmorepf avatar pgilmorepf commented on August 14, 2024

Thanks for the bug report, and thanks to @lazerwalker for sending us the fix.
Release: https://github.com/PlayFab/NodeSDK/releases/tag/2.46.200422
Release Notes: https://docs.microsoft.com/en-us/gaming/playfab/release-notes/#200422
NPM Package: https://www.npmjs.com/package/playfab-sdk

from nodesdk.

Related Issues (18)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.