Skip to content
This repository has been archived by the owner on Jun 18, 2019. It is now read-only.

Commit

Permalink
Final batch of changes for beta.0
Browse files Browse the repository at this point in the history
  • Loading branch information
patrick-rodgers committed Aug 29, 2017
1 parent 6399bb9 commit 99b12d4
Show file tree
Hide file tree
Showing 15 changed files with 89 additions and 275 deletions.
12 changes: 11 additions & 1 deletion .gitignore
Expand Up @@ -18,11 +18,21 @@ coverage
# Dependency directory
node_modules

# generated folders
# generated folders/files
lib
testing
docs
debugging
core.d.ts
core.js
graph.d.ts
graph.js
net.d.ts
net.js
odata.d.ts
odata.js
sp.d.ts
sp.js

# Optional npm cache directory
.npm
Expand Down
11 changes: 10 additions & 1 deletion .vscode/settings.json
Expand Up @@ -8,7 +8,16 @@
"coverage": true,
"testing": true,
"debugging": true,
"exports": true
"core.d.ts": true,
"core.js": true,
"graph.d.ts": true,
"graph.js": true,
"net.d.ts": true,
"net.js": true,
"odata.d.ts": true,
"odata.js": true,
"sp.d.ts": true,
"sp.js": true
},
"typescript.tsdk": "node_modules/typescript/lib"
}
240 changes: 0 additions & 240 deletions assets/locale.ts

This file was deleted.

2 changes: 1 addition & 1 deletion gulptasks/@configuration.js
Expand Up @@ -30,7 +30,7 @@ module.exports = {
paths: {
dist: "./dist",
lib: "./lib",
exports: "./exports",
exports: "./",
source: "./src",
sourceGlob: ["./src/**/*.ts", "!./src/exports/**/*.ts"],
assetsGlob: "./assets/**/*.*",
Expand Down
4 changes: 2 additions & 2 deletions gulptasks/build.js
Expand Up @@ -36,8 +36,8 @@ gulp.task("build:exports", () => {
.pipe(project());

return merge([
built.dts.pipe(replace("../", "../lib/")).pipe(gulp.dest(config.paths.exports)),
built.js.pipe(replace("../", "../lib/")).pipe(gulp.dest(config.paths.exports))
built.dts.pipe(replace("../", "./lib/")).pipe(gulp.dest(config.paths.exports)),
built.js.pipe(replace("../", "./lib/")).pipe(gulp.dest(config.paths.exports))
]);
});

Expand Down
1 change: 0 additions & 1 deletion gulptasks/clean.js
Expand Up @@ -14,7 +14,6 @@ gulp.task('clean', (done) => {
var directories = [
config.paths.dist,
config.paths.lib,
config.paths.exports,
config.testing.testingRoot,
config.debug.outputRoot,
config.docs.output
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -3,7 +3,7 @@
"version": "3.0.0-beta.0",
"description": "A JavaScript library for SharePoint development.",
"main": "./lib/pnp.js",
"typings": "./lib/pnp",
"typings": "./lib/pnp",
"dependencies": {
"@types/sharepoint": "2013.1.9"
},
Expand Down

0 comments on commit 99b12d4

Please sign in to comment.