Skip to content

Commit 6a8bd27

Browse files
Merged with master and rebuild all sdk's
2 parents 818b3de + 9bcebbe commit 6a8bd27

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

nativescript.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
module.exports = require('./dist/nativescript/contentstack');

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "contentstack",
3-
"version": "3.4.0",
3+
"version": "3.4.1",
44
"description": "Contentstack Javascript SDK",
55
"homepage": "https://www.contentstack.com/",
66
"author": {
@@ -15,7 +15,7 @@
1515
"buildnode": "webpack --config webpack/webpack.node.js",
1616
"buildweb": "webpack -p --config webpack/webpack.web.js",
1717
"buildreactnative": "webpack --config webpack/webpack.react-native.js",
18-
"buildnativescript": "webpack --config webpack/webpack.native-script.js",
18+
"buildnativescript": "webpack --config webpack/webpack.nativescript.js",
1919
"buildall": "npm run buildnode&npm run buildweb&npm run buildreactnative&npm run buildnativescript",
2020
"generate-docs": "node_modules/.bin/jsdoc --configure docs-config.json --verbose"
2121
},
File renamed without changes.

webpack/webpack.native-script.js renamed to webpack/webpack.nativescript.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ module.exports = function(options) {
1010
output: {
1111
library: "Contentstack",
1212
libraryTarget: "commonjs2",
13-
path: path.join(__dirname, "../dist/native-script"),
13+
path: path.join(__dirname, "../dist/nativescript"),
1414
filename: "contentstack.js"
1515
},
1616
resolve: {
1717
alias: {
18-
runtime: path.resolve(__dirname, '../src/runtime/native-script')
18+
runtime: path.resolve(__dirname, '../src/runtime/nativescript')
1919
},
2020
modules: [
2121
'../src',

0 commit comments

Comments
 (0)